Forum Replies Created
-
In reply to: freshness not translating
once activated go to
dashboard>settings>bbp style pack>Freshness Display
and you will see options to translate
In reply to: Lost Right Sidebarhmm.. not really a bbpress issue, and nothing has changed in bbpress recently.
it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
In reply to: Registration, No passwordjust tested and I got two emails
one as you described, and the second with a password link.
In reply to: Private forumand you get this from what actions?
In reply to: Allow Posting Without Loginsdashboard>settings>forums and allow anonymous posting
In reply to: visual editor doesnt integrate instagram postnothing has changed in bbpress
In reply to: Registration, No passwordshould be a link.
In reply to: Save blog posts to account profileusers can ‘favorite’ a topic and this is saved in the ‘favorites’ section of their profile.
In reply to: there’s no reply form in the pageso someone who is registered and logged in cannot see the reply form ?
In reply to: Breadcrumb shows title of homepage instead of homeHow can I solve this without adding custom code somewhere or adding more plugins for minor issues like this?
you can’t without doing one of the two. Given that every page rendition of a site without caching involves the parsing of many thousands of functions, and execution of several thousand, adding a plugin or some code to so this will add no perceivable delay to your site.
plugin wise
code wise
https://codex.bbpress.org/layout-and-functionality-examples-you-can-use/#4-turning-off-or-changing-breadcrumbs item 4 to turn off homepage
In reply to: How to insert short codes under topic pages?add_action( 'bbp_template_after_single_topic' , 'rew_add_shortcode2'); function rew_add_shortcode2 () { echo do_shortcode( '[shortcode here]' ); }In reply to: Reply permalink not showing up in searchthis might do it
In reply to: Private forumWhen you say create a membership form, what do you mean specifically? For example do I create a basic contact form for those who want to join, and then offer to send them their username and password?
yes.
When they first log on, they will get the role set up in
dashboard>settings>forums>roles so tick that and set it up for participant.
In reply to: Private forumdepends on what parameters you want to use.
typically either automatic or totally manual – ie disable membership in dashboard>settings>general and create a membership form
In reply to: Buddypress is not appearing in my page editorIn reply to: Know all the featureslots of add-on plugins that will achieve these features
groups can be achieved with buddypress or bbp-private-groups
bbp-style-pack will do various styling and features
online chat – buddypress or bbPress Messages
moderation – bbPress – Moderation Tools
attachments – GD bbPress Attachments
images – Inline Image Upload for BBPress
voting – bbp-valorationIn reply to: Forum descriptioncan only suggest it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
In reply to: Forum descriptionis your site public ?
In reply to: Forum descriptionIn reply to: bbp-search on a single forumjust tried that code on my test site and it works fine.
where are you putting it ?
In reply to: bbp-search on a single forumok, try this
add_filter( 'bbp_before_has_search_results_parse_args' , 'my_bbp_filter_search_results' ); function my_bbp_filter_search_results( $args ){ $forum_id = 1715; if( $forum_id && is_numeric( $forum_id ) ){ $args['post_parent'] = $forum_id ; } error_log('Dedicated forum = ' . $forum_id); return $args; }In reply to: WooCommerce Hiding Admin Bar for bbPress Moderatorsok, one I think for woocommerce to respond.
In reply to: bbp-search on a single forumfrom a very quick look, that code looks like it should work, and not seen anything else that does this, so try it, and if it doesn’t work, come back
your theme or elementor is doing this
it has a css entry
.has-sidebar:not(.error404) #primary { float: left; width: 58%; }you could change this to 100% in your custom css ie put this in your custom css
.has-sidebar:not(.error404) #primary { width: 100% !important; }but it might affect other parts of your site, so try it and see