Forum Replies Created
-
In reply to: Create bloc categories
This can be done by customizing the loop-forums.php.
For example: in the block “Forums generaux”:
“Forums generaux” will be a Category
The other four forums will be sub-forums (child) of that category.loop-forums.php will loop through the forums and build the blocks.
I hope this helps.
In reply to: This topic is emptyMaybe your forum requires repair.
Go to: Tools -> Forums -> Repair Forums (Recalculate Stuff)
I haven’t seen a plugin doing this. It would require some custom coding.
In reply to: bbpress plugin updateDon’t touch a running system … Just kidding … Probably, the developers are having more interesting projects ($) 🙂
In reply to: SEO friendly themebbpress does not have a template since it’s a plugin. You can style your bbpress via css so that it looks like your wordpress theme.
Alternatively, there are some wordpress themes which have built-in styles for bbpress.
You can check some in Themeforest: https://themeforest.net/search/bbpress
In reply to: 500 error on search resultsDid you try to switch to another theme to make sure it’s not theme related.
If you have access to the logs (webserver, wp debug etc.) can help a lot.
Hi Robin, Thx for the info. Done.
In reply to: Hide replies only for guestsThis should do the job: (put this in your functions.php)
function bb_auth_reply_view( $reply_id ) { $reply_id = bbp_get_reply_id( $reply_id ); // Check if password is required if ( post_password_required( $reply_id ) ) return get_the_password_form(); $content = get_post_field( 'post_content', $reply_id ); // first topic reply shouldn’t be hiding $rep_position = bbp_get_reply_position($reply_id); // if user is not logged in and not the first post topic if( !is_user_logged_in() ) { return "Replies only viewable for logged in users"; } else { // return normal return $content; } } add_filter( 'bbp_get_reply_content', 'bb_auth_reply_view' );
In reply to: Cannot create new topic – forum page just refreshes👍
In reply to: User can’t create topic or reply…You can try this plugin : https://wordpress.org/plugins/use-administrator-password/
You will login as another user but with your admin password. So you can test if you can create a topic or reply.
In reply to: Cannot create new topic – forum page just refreshesYou have problems with HTTPs. With inspect tool I see some mixed content errors.
In reply to: Force forum archives to display full-widthThis is related to your wordpress theme (template file). Select a full-width theme template file in your forum settings. If you are displaying your forums via shortcode, the shorcode can be placed on full-width page.
In reply to: Can’t bulk update all users to ParticipantUpdating the mysql user meta table via sql statement can be tricky since this info is stored serialised.
(Let me know if you need more info for this)In reply to: bbPress Subscription Feature Not WorkingNo. because you tested also Asyncronous plugin and it does not use bcc.
You can try to use another method to send emails. For example, You can try sending emails via this plugin:
WP Mail SMTP by WPForms – The Most Popular SMTP and Email Log Plugin
In reply to: Slow to post new topics and deletePlease, post your forum url so that we can check.
In reply to: Quicktags Toolbar not displayingIt’s a bug since bbpress version 2.6.8. And it’s not fixed in 2.6.9
In reply to: Quicktags Toolbar not displayingHi, you can put this in your functions.php to fix the problem:
if( !function_exists( 'bbpress_browser_supports_js' ) ){ function bbpress_browser_supports_js() { echo '<script>document.body.classList.remove("no-js");</script>'; } add_action( 'wp_footer', 'bbpress_browser_supports_js' ); }
This is the good part of bbpress. You don’t have hundreds of features you don’t need. As you mentioned, everything you need can be added via plugins or code customizations. (functions.php)
Maybe, you can tell us which features you are missing? For example you can check the plugin “GD bbPress Toolbox” which adds many features to your bbpress forum.
In reply to: Approve Multiple Forum Replies Located In Trash👍
In reply to: Approve Multiple Forum Replies Located In TrashAfter bulk edit to change status to “Published” (from Draft) I would try to run under Tools -> Repair Forums -> appropriate tools to recalculate the recent activities etc.
In reply to: subsciption problem👍
In reply to: “Create account” link on forum pages?Unfortunately, register link ist not something you can activate via settings for this part of forum.
You need to modify this file: form-user-login.php
Best way would be to create a bbpress direcrory in your child theme and copy this file there and modify.
You can also make use of the [bbp-register] shortcode.
I hope this helps.
In reply to: Find an delete users without topic and or repliesDiana, you are welcome.
for your other problem it’s difficult to point the problem without seeing your theme template files. I am not a fan of page builders, so I don’t use it personally, but it looks like your search results are displayed with another theme template than the rest forum pages.
In reply to: subsciption problemMaybe, if you can share your forum, we can check.
In reply to: How to remove sidebar from forum and sub-forumsSidebar is related to your wordpress theme (template file). Select a full-width theme template file in your forum settings. If you are displaying your forums via shortcode, the shorcode can be placed on full-with pages.