Forum Replies Created
-
In reply to: Registration, No password
should 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
In reply to: How to insert short codes under topic pages?sorry, this one slipped by
add this code, changing ‘shortcode here’ to the actual shortcode you wish to execeute
add_action( 'bbp_theme_before_reply_form' , 'rew_add_shortcode'); function rew_add_shortcode () { echo do_shortcode( '[shortcode here]' ); }Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
In reply to: CustomizationIf it is sidebars, then sidebars are controlled by
wordpress – dashbaord>apperaance>widgets
Your theme/elementor
plugins that affect your themebbpress does nothing except provide widgets for the elements above
In reply to: Customizationsorry – suspect elementor is the issue
In reply to: Customizationthis still works as far as I know
so you would use
!is_bbpress()against the my posts – so that will only show on non bbpress pages
In reply to: Removing Entry Page Title on Forum Index Pageok, can only suggest you try this, and then discuss with your theme author
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: there’s no reply form in the pageso what is the setting in
dashboard>settings>forums>anonymous?