Forum Replies Created
-
In reply to: Forum description
can 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?
In reply to: Removing Entry Page Title on Forum Index Pageso are you using a page to display forums ie you have a page in your site called ‘foums’ with
[bbp-forum-index]
in it?
If not try setting this up as then you theme might see this as a page
In reply to: bbPress registration email confirmationIn reply to: Several ‘Forums’ on one siteIn reply to: Removing Entry Page Title on Forum Index Pagelooks like your theme is displaying the page title. You might need to amend some theme stuff
In reply to: WooCommerce Hiding Admin Bar for bbPress Moderatorsok, a couple of thoughts just looking at that code
The first would be to break it into a function, nested stuff can sometimes fail so
add_action('init', 'rew_check_bbpress_moderator') ; function rew_check_bbpress_moderator(){ if(class_exists('WooCommerce') && function_exists('bbp_get_user_role') && is_user_logged_in()){ $current_user = wp_get_current_user(); $user_id = $current_user->ID; $bbp_get_user_role = bbp_get_user_role($user_id); if($bbp_get_user_role == 'bbp_keymaster' || $bbp_get_user_role == 'bbp_moderator'){ add_filter( 'woocommerce_prevent_admin_access', '__return_false' ); add_filter( 'woocommerce_disable_admin_bar', '__return_false' ); } } }Secondly I think woocommerce is all lower case so
if(class_exists('WooCommerce')might need to read
if(class_exists('woocommerce')Let us know if either of these help
great – glad you are fixed !
In reply to: bbPress registration email confirmationbbpress registration just uses wordpress registration, so likely a site/wordpress issue
copy/paste of my standard advice on email – hopefully it will help
1. You should be aware that many spam filters strip messages that do not come from the correct address. So if your site is mysite.com and your email address
in wordpress settings>general is fred@gmail.com then it is likely that messages will be dumped in transit.
You need to set up email to come from your site eg fred@mysite.com, your hosting provider can help if needed.
2. Just bbpress?
Then you need to see if this is wordpress wide or just bbpress.
Try https://wordpress.org/plugins/check-email/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
Next try switching to smtp email – this page from the host Siteground explains it
https://www.siteground.co.uk/tutorials/wordpress/use-smtp/
and of course
By default, you do NOT receive emails for your own topics/replies, only if somebody else replies on your subscribed topics
so testing would need two email accounts to prove !
you should get a ‘next page’ but probably easiest just to up the number.
once activated go to
dashboard>settings>bbp style pack>Forum Display
and set the number in item 11
great – glad you are fixed
In reply to: last reply on Freshnessgreat – glad you are fixed