Forum Replies Created
-
In reply to: Reply order with menu_order has gaps
Try dashboard,tools,forums,repair forums and run one at a time
In reply to: Remove white barwould need a link to the actual page on the live site to help
In reply to: Strange code under profileglad to have helped
In reply to: Strange code under profileit is an IP6 internet address.
Admins see this, so that they can spot users who might be posting from a single computer, but using multiple user ID’s – you can then see that they are the same person.
Might be useful for you, might not, but only admins see this.
In reply to: HTML code appears on forumsit’s not a general issue – there are 100,000 websites using bbpress.
In reply to: :diamond: –> ♦? possible solutions not workingI just hope no-one is relying on GPT for anything important 🙂
Computers have a very long way to go to get to any ‘skeptical’ intelligence, so will simply spout whatever the web says. If lots of sites on the web say the world is flat, I’d expect GPT to accept this as true 🙂
In reply to: :diamond: –> ♦? possible solutions not workingok, the code is probably ok, but chat gpt has a long way to go !
A function needs something to call it, otherwise it just sits there.
Not tested, but add these 2 lines before or after (doesn’t matter which) the function
add_filter( 'bbp_get_reply_content', 'replace_suit_symbols' ) ; add_filter( 'bbp_get_topic_content', 'replace_suit_symbols' ) ;
In reply to: :diamond: –> ♦? possible solutions not workingok so unless you have some further code, nothing is calling that function.
I presume this is content on bbpress topics and replies – yes?
In reply to: remove IPThat only shows for moderators and key masters, ordinary participants do not see it.
In reply to: HTML code appears on forumssuspect it would depend on how she pasted.
She should paste/text only – ie without the formatting – there will be an option for this, offhand I don’t know what in safari/mac
ok, so we are back to the fault finding
It’s not twenty twenty four as I’ve just double checked that, so I’d suspect another plugin if you are happy that your role has keymaster.
so use the healthcheck tool to test you site with just bbpress and your theme, and then add back plugins until you get the problem
I’m not suggesting you change themes, simply that you do this as a test. This just lets us see where the problem lies so that we can fix it.
bbpress works fine with 2024 as long as you fixed it at the theme support tab in style pack settings to enable it for FSE theme.
ok, so you definitely have bbpress enabled 🙂
it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, and see if this fixes. don’t use twenty twenty four, as it is an FSE theme
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
so you cannot see bbpress on either the frontend and the backend – yes? or just the backend?
In reply to: Is bbPress alive?I have bbpress working fine with 8.2
You can build your forum to look however you like, many would complain if this was the only way you could show your forum.
The basic look of the forum is generally determined by your theme, and dependent in theme how you use sidebars.
The widgets on the left are available either in the default bbpress plugin or in
which will let you style bbpress and add lots of features.
In reply to: Dashicons Forums and Topic Titlespleased that you are fixed !
In reply to: Dashicons Forums and Topic Titlesit needs a template change – if you know how to FTP
find
wp-content/plugins/bbpress/templates/default/bbpress/loop-topics.phptransfer this to your pc and edit
change:
<li class="bbp-topic-voice-count"><?php esc_html_e( 'Voices', 'bbpress' ); ?></li> <li class="bbp-topic-reply-count"><?php bbp_show_lead_topic() ? esc_html_e( 'Replies', 'bbpress' ) : esc_html_e( 'Posts', 'bbpress' ); ?></li>
to
<li class="bbp-topic-voice-count"></li> <li class="bbp-topic-reply-count"></li>
and save
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpresswhere %your-theme-name% is the name of your theme
Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/loop-topics.phpbbPress will now use this template instead of the original
Repeat this for the file loop-forums.php
In reply to: Forum summary with total postsphew !!
In reply to: Forum summary with total postsok, I’ve spent way too much time on this, so last roll of the dice – see in 5.8.6 fixes.
In reply to: Remove noreply email from notification emailsI think in your code the function
no_reply_email
needs amy_bbp
in front of itso
function no_reply_email(){ $email = 'no-reply@sitename.com'; // any email you want return $email; } add_filter('bbp_get_do_not_reply_address','my_bbp_no_reply_email');
shoudl read this
function my_bbp_no_reply_email(){ $email = 'no-reply@sitename.com'; // any email you want return $email; } add_filter('bbp_get_do_not_reply_address','my_bbp_no_reply_email');
In reply to: bbp style pack removed my custom forum rolesThat all seems to make sense, I’ll ignore this for the moment 🙂
In reply to: Remove noreply email from notification emailspaths removed, I’ll take a look tomorrow
In reply to: Remove noreply email from notification emailsdo you have details of the error?
In reply to: Forum summary with total postsok, try 5.8.5 just released