Forum Replies Created
-
In reply to: Change title of ‘Forums’ to ‘Forum’
add_filter( 'gettext', 'rew_bbpress_translate', 20 , 3 ); function rew_bbpress_translate( $translated, $text, $domain ) { if ($domain == 'bbpress') { $words = array( 'Forums' => 'Forum' ); $translated = str_replace( array_keys($words), $words, $translated ); } return $translated; }
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: Is there a restriction on forum size ?No restriction in forum size – this site uses bbpress with 130,000 odd topics. Server capability is of course key to any response time.
Bbpress just uses wordpress login, so you will need to look at how that is done with wordpress.
In reply to: Does bbpress has multi-level forum structure?I can only suggest you try it, but in essence yes, bbpress has categories, forums, sub forums, topics and replies.
In reply to: Error in the Search Functionalitynot sure that will help – as I stated in the fix, this is neither bbpress or elementor problem – just 2
plugins that try and help wordpress but don’t totally work together.In reply to: Alternative to bbpress moderation toolsthe core of bbpress is stable enough that I suspect this version will hold for a good while yet.
In reply to: Alternative to bbpress moderation toolsI had the last version and have put it here
In reply to: Error in the Search Functionalityhmmm… ok, not sure what else I can suggest, given that others found it worked
In reply to: Error in the Search FunctionalityDoes not help anything
ok, for clarity can you confirm that the problem you have is the error in search functionality listed at the top of this thread?
In reply to: Error in the Search Functionalityok so let’s try the standard fault finding
it could be a theme or plugin issue
Plugins
deactivate all plugins apart from bbpress and my fix plugin 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: Error in the Search Functionalityso presume you have the hello theme?
In reply to: Overwrite Bbpress classso have you tried
add_filter ('bbp_topic_tag_tax_id' , 'rew_return_null') ; function rew_return_null () { return 0 ; }
or
add_filter ('bbp_topic_tag_tax_id' , 'rew_return_null') ; function rew_return_null () { return false ; }
or indeed
add_filter ('bbp_topic_tag_tax_id' , 'rew_return_null') ; function rew_return_null () { return 'hello' ; }
it would appear to be a known issue
https://pluginus.net/support/topic/first-filter-disappears-when-set/
otherwise suggest you raise with woof
In reply to: Overwrite Bbpress classthat line allows the result to be filtered
so this should work
add_filter ('bbp_topic_tag_tax_id' , 'rew_return_null') ; function rew_return_null () { return ; }
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
Do you do custom code?
yes
In reply to: bbpress, 3 requests, and please fix the buga function is beyond free help – sorry
In reply to: Featured image on new forum topics – form-topic.phpnone of this testd, but the actual adding of an image to the post would be something like
add_action('bbp_template_before_single_topic', 'pym_print_featured_image_single_forum', 11); function pym_print_featured_image_single_forum() { if (has_post_thumbnail()) { echo '<div class="pym-bbp-topic-thumbnail">'; echo get_the_post_thumbnail(null, 'thumbnail' ); echo '</div>'; } }
adding featured topic to the backend would be something like
add_post_type_support('topic', array('thumbnail'));
Code could be written to allow the user to add an image, but that’s a chunk of work !!
In reply to: Featured image on new forum topics – form-topic.phpnothing I know of does this.
1. is doable, but would require custom code beyond free help
2. hmmm… that’s kinda how I do this on this site, but I only have a dozen or so each day. Are you using askimet to help reduce spam?
3. again would depend on what format the list is in, but beyond free hep as site specific.
if you need paid help, contact me via
not sure how this is related to bbpress.
I suspect you will need to set something in your theme
dashboard>appearance>customise
this custom css might help if you can’t find where to set the width
#wrapper.boxed #theme-header, #wrapper.boxed .breaking-news, #wrapper.boxed #main-content { width: 1200px !important; }
In reply to: How to offer image uploads?🙂
In reply to: bbpress sends no notification emailok, so next I’d test whether you email service is working correctly
In reply to: How do I find all ranks and their criteria?sorry, this is not bbpress – maybe a related additional plugin?
In reply to: Max Forums/Categories & Subforumsbbpress is very scalable, wordpress with around 55,000 plugins (each one with it’s own forum) uses it for their support.
bbpress just uses the wordpress custom post type and posts table in the database.
issues on a very large site will be due to the time to perform database searches, and this is really down to server performance rather than bbpress inherent issues.
you can download the other one from
In reply to: bbpress, 3 requests, and please fix the bug50 is only the maximum no. forums per page, there is no maximum no. forums or topics, or replies. This support forum has over 150,000 topics !
In reply to: bbpress, 3 requests, and please fix the bugThe max 100 is the number of displays. It doesn’t close the board, and keep to open the board.
Comments after 101 are hidden, and I want to delete it automatically.sorry, you use of words is confusing
please state whether ‘board’ is ‘topics’ or ‘forums’
and ‘comments’ are ‘topics’ or ‘replies’