Search Results for '+.+default+.+'
-
Search Results
-
Topic: sort topic by value
Is there a plugin or function to sort topics by weight? In other words, a field where a numerical value can be added, and if a value exist in this field, it brings the topic to top of topic lists.
And each topic that has a value in it, if the value is higher than other values of topics, the highest values are are the top of topic lists. And then topics which have no values are sorted in topic list in default manner.
I’ve seen sorting set up with values like this in all types of scripts, and just hoping there is a way to accomplish this in bbPress.
Thanks for any suggestions.
Hello,
I’ve noticed a possible bug in the way Yoast SEO generates sitemaps for bbPress replies.– In the topic-sitemap.xml files, the topic URLs are correctly generated and point to the actual topics (e.g. https://www.example.com/topic-name.html).
– But in the reply-sitemap.xml files, every reply entry points to the same generic URL like https://www.example.com/forums/reply, which doesn’t resolve to the actual reply.
As a result:
– These sitemap entries are invalid because they don’t lead to a specific page.
I built a custom plugin (with ChatGPT’s help) that adds proper URLs for replies, but I’m wondering: does it even make sense to submit reply URLs to Google?
Wouldn’t it be better if Yoast excluded replies from the sitemap entirely, and only kept topics?I also noticed that in the Yoast settings (SEO → Search Appearance → Content Types) it is possible to disable “Replies”. That solves the problem, but shouldn’t this be the default setting?
Or alternatively, if replies are enabled, shouldn’t Yoast output the correct URLs instead of /forums/reply?Can you clarify what the recommended behavior is?
Thank you!
Hi everyone,
I’d like to share a very useful snippet for bbPress that I had a hard time finding on Google, but which can save a lot of time.
For many communities it’s extremely helpful to have the “Notify me of follow-up replies via email” box checked by default. This way, users are automatically notified of new replies and are more likely to come back to the forum and engage in the discussion.
Here is a simple solution that works on the latest WordPress + bbPress. Just add it to your theme’s functions.php or into a small custom plugin:
// Auto-check the "Notify me of follow-up replies via email" box (topic + reply forms) add_action('wp_footer', function () { if (is_admin() || !function_exists('bbp_is_subscriptions_active') || !bbp_is_subscriptions_active() || !is_user_logged_in()) { return; } ?> <script> document.addEventListener('DOMContentLoaded', function () { var t = document.getElementById('bbp_topic_subscription'); if (t && !t.checked) t.checked = true; var r = document.getElementById('bbp_reply_subscription'); if (r && !r.checked) r.checked = true; }); </script> <?php }, 99);
With this snippet, whenever a logged-in user creates a new topic or reply, the subscription checkbox will already be checked by default.
Of course, the user can still uncheck it if they don’t want notifications.This small trick makes it much easier to keep members engaged and ensures they don’t miss important replies.
Hope it helps others too, since I believe this should be more widely documented!
Hello forum members
My site is using the latest version of WordPress 6.8.2 and the 2025 Block Theme and BBPress Forum.
I want to use the classic theme for BBPress Forum instead of the Block Theme
Please guide me how can I activate my favorite classic theme instead of the default BBPress theme?
Thanks
Wordpress: 6.8.1
bbPress: 2.6.13.shortcodes on my Forum page:
[bbp-topic-index]
[bbp-topic-form forum_id=846]website: https://www.pcrnmra.net/redwood/
Forum page R.E.D. “Crew Lounge”My site has only one forum (id=846), but when I add the shortcode
[bbp-topic-form forum_id=846], the dropdown for Forum: still defaults to –No forum –.I researched this and found that the shortcode
[bbp-topic-form forum_id=846] is supposed to fix this, but it is not working for me.TIA