Forum Replies Created
-
In reply to: Deleting Spam Topics Permanently
you could try this
it will delete the posts, but not the post meta, but will tidy up what wordpress displays and make it run faster
In reply to: Styling pages made using the shortcodegreat – glad it worked !
In reply to: search returning 404 with Sydney themejust found 5 mins to look at this
so installed free sydney theme from wordpress
downloaded and installed child theme from here
https://athemes.com/download/sydney-child-theme/creates bbpress folder in child theme
copied \bbpress 2.6.6\templates\default\bbpress\content-search.php to child theme bbpress folder
all works fine.
I can only suggest you try
dashboard>settings>permalinks and just click ‘save’ – this resets the permalinks and often fixes 404 errors
In reply to: Styling pages made using the shortcodebbpress has an ID not a class (you don’t need to know what this means!) , so try
body#bbpress .memberoni_breadcrumbs { display: none; }
In reply to: search returning 404 with Sydney themeso I reckon you have followed this thread
yes ?
If so it should work, but are you using free or pro version of the sydney theme?
In reply to: TinyMCE will not display on site๐
In reply to: Keep subscribers at frontend -redirect wp loginok, I agree it is annoying, but bbpress just uses worldpress registration and login, and is not very clever with these elements.
You are best to sort it using a plugin such as ‘theme my login’ to fix all these issues
In reply to: Keep subscribers at frontend -redirect wp loginfor registration, set up a pages called whatever you wish and use the relevant shortcodes
[bbp-login] โ Display the login screen.
[bbp-register] โ Display the register screen.
[bbp-lost-pass] โ Display the lost password screen.In reply to: Keep subscribers at frontend -redirect wp loginIn reply to: bbPress Topics for Posts commentdashboard>pages>all pages> and select the ‘activities’ page.
From there select ‘page’ on right hand side
scroll down and you should see ‘topics for posts’
and a tickbox ‘use a bbpress forum topic for comments on this post’ – untick this.
If you do not see that part, then click the 3 vertical dots and scroll to the bottom of that page, select preferences and then panels and then click the topics for posts
Sorry this is wordpress not me making this hard
In reply to: I’m missing menu itemsuser was able to upload bbp style pack, and from there reset as keymaster
In reply to: I’m missing menu itemsIn reply to: Issues with forum profile user menuok
In reply to: Issues with forum profile user menuok, so you have posted an image, but we have no idea what is wrong with it – please details exactly what is wrong
In reply to: How to expand roles in bbpress?that ability is on bbpress
so set the user to particpant, and then in the relevant forums, you will see the ability to set the user as a moderator for that forum on the right hand side in edit forum
In reply to: where is status-closed css set?you could do that with javascript, but nothing already written in the plugin that I know of
In reply to: bbPress Topics for Posts commentyes you have a page called activities, so you just need to turn off the topics for posts on this page
In reply to: bbPress Topics for Posts commentfirst question ; do you have a page in
dashboard>pages called activities and one called members ?
second question : I don’t know, I am not an SEO expert ๐
In reply to: I’m missing menu itemsI’m very surprised that you cannot add the style pack plugin – it is quite small !
But if your hoster won’t allow this, then come back and I’ll try to help further
In reply to: bbPress Topics for Posts comment@ricsca2 – I don’t know what you are asking in the previous or whether you still have an issue on either ‘can you automatically insert the โleave and commentโ look?’ or ‘As for the seo, can having the article with the same title in the forum penalize?’ or what either means.
If you still need help, can you type more than a single sentence ๐
On the issue of buddypress, topics for posts lets you decide if the default for a page is to create a topics for posts or not (see dashboard>settings>discussion). On page creation, you can then switch on and off as you wish. Are these actual pages or virtual pages?
In reply to: Recent Topics link to most recent replygreat – glad you are fixed
In reply to: I’m missing menu itemsok, style pack has a fix for no keymaster
dashboard>settings>bug fixes
but you’ll need to get you hoster to increase your upload file size first to enable you to install this.
In reply to: where is status-closed css set?if you’ve cloned the forum widget, you can set a class – the test is
if ( bbp_is_forum_closed(forum_id)) ...
and
if ( bbp_is_topic_closed (topic_id)) ...
In reply to: BBP_Forums_Widget buginteresting..it looks ok on my test site, but I can see it doesn’t on yours.
I should state that I am just a bbpress user who helps out here, not the plugin author.
2 choices
1. amend the actual widget file – yes that is said by many to be bad practice, but bbpress does not do frequent releases, and if it is your site and you know what you changed, is probably the quickest and easiest answer
2. clone the widget to your theme’s child functions file. so take the whole function that starts
class BBP_Forums_Widget extends WP_Widget {
Now you’ll need to rename it, so change BBP_Forums_Widget wherever quoted to something unique, and change names/title in these lines
public function __construct() { $widget_ops = apply_filters( 'bbp_forums_widget_options', array( 'classname' => 'widget_display_forums', 'description' => esc_html__( 'A list of forums with an option to set the parent.', 'bbpress' ), 'customize_selective_refresh' => true ) ); parent::__construct( false, esc_html__( '(bbPress) Forums List', 'bbpress' ), $widget_ops ); } /** * Register the widget * * @since 2.0.0 bbPress (r3389) */ public static function register_widget() { register_widget( 'BBP_Forums_Widget' ); }
you can then amend the offending line.
In reply to: Recent Topics link to most recent replyI’m pretty sure that the link in the ‘latest activity’ widget in my style pack takes you to the reply
once activated you’ll find a latest activity widget with lots of settings you can use.