Forum Replies Created
-
is this the free plugin here
In reply to: @mentions for bbpressok, quite a while ago that I last looked at this area, I’ll try and take a fresh look when I can.
In reply to: @mentions for bbpressTry this
In reply to: One forum category doesnt showing up.no problem, glad that you are fixed 🙂
In reply to: One forum category doesnt showing up.I fully understand – you have an issue where one forum is not showing. Given that showing these forums are settings within your theme or LMS, not within bbpress, then it most likely that it is a setting somewhere within this.
so you can try one last thing
dashboard>settings>permalinks and just click save – this resets the permalinks and may help
then if you srea still convinced that it is not theme or plugin, you can prove this using
Themes
As a test switch to a default theme such as twentytwenty, 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
Then come back
In reply to: One forum category doesnt showing up.I don’t use either the theme or LMS, so I can’t say what settings you would need to look at, can only suggest you contact the theme author, or plugin authors of restrict content and/or LMS
In reply to: One forum category doesnt showing up.ok, so it will I suspect be a setting that those use , so suggest you see what differences there are with that forum vs. the others
In reply to: Forum and Chatbbpress gives you the forum
buddypress and/or this should give you the messages
Better Messages – Live Chat for WordPress, BuddyPress, BuddyBoss, Ultimate Member, PeepSo
In reply to: How to edit forum user role compatibilities?sorry, ‘bbPress – Report Content’ is not a bbPress authored plugin – you would need to raise this with the plugins author.
In reply to: One forum category doesnt showing up.so what plugin/theme are you using that restricts access?
In reply to: bbPress single topic + ElementorGreat – thanks for posting your solution 🙂 🙂
In reply to: How to edit forum user role compatibilities?In reply to: Edit Topic Page🙂
In reply to: bbPress single topic + ElementorIf you do fix, please do post back your solution here to help others
In reply to: bbPress single topic + Elementor🙂
In reply to: bbPress single topic + Elementorif you are using the hello theme, then try
In reply to: Can’t work out how to link to mobile?looks like you could use this, but check that bbpress is covered.
In reply to: Can’t work out how to link to mobile?no, sorry no app !
In reply to: Topic submission form customisationso you are happy that in the forum display, the topic content box will be there, but show nothing ?
for 1,3&4
#bbpress-forums fieldset.bbp-form input[type="text"] { width: 100% !important; } div.bbp-submit-wrapper { width: 100%; }add this to the custom css of your theme
ok, I’ve found time to take an initial look at this.
The function called looks at a database item which holds the sub forum count – but it looks like this is just count of public forums, so the count is zero, so none displayed.
so removing looking at this takes away the issue.
It would take a deal of work to see why and how to make a permanent fix to this, and I think this filter will do what you want
add_filter('bbp_forum_get_subforums', 'rew_forum_get_subforums', 10, 3); function rew_forum_get_subforums( $sub_forums, $r, $args ) { // Default return value $retval = array(); // Use passed integer as post_parent if ( is_numeric( $args ) && ! empty( $args ) ) { $args = array( 'post_parent' => bbp_get_forum_id( $args ) ); } // Parse arguments against default values $r = bbp_parse_args( $args, array( 'post_parent' => 0, 'post_type' => bbp_get_forum_post_type(), 'posts_per_page' => get_option( '_bbp_forums_per_page', 50 ), 'orderby' => 'menu_order title', 'order' => 'ASC', 'ignore_sticky_posts' => true, 'no_found_rows' => true ), 'forum_get_subforums' ); // Ensure post_parent is properly set $r['post_parent'] = bbp_get_forum_id( $r['post_parent'] ); // Query if post_parent has subforums if ( ! empty( $r['post_parent'] ) ) { $get_posts = new WP_Query(); $retval = $get_posts->query( $r ); } // Filter & return return (array) apply_filters( 'rew_forum_get_subforums', $retval, $r, $args ); }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
This is not fully tested, but should work
add_filter( 'bbp_get_reply_edit_url', 'rew_admin_link', 10 , 2 ) ; function rew_admin_link ($url, $reply_id ) { if ( bbp_is_user_keymaster(get_current_user_id())) { $url = '/wp-admin/post.php?post='.$reply_id.'&action=edit' ; } return $url ; }In reply to: Forum not available for days, then appears!great – glad you are fixed !!
In reply to: Forum not available for days, then appears!contact me via
In reply to: Forum not available for days, then appears!are you using any caching software? either plugin or Siteground?
In reply to: Can’t Install bbPress 2.6.6ok, so your have downloaded it to your pc and are trying to install by doing what?
(By the by, current version is 2.6.9, is there a reason why you want an old version?)