Forum Replies Created
-
In reply to: Need help in user roles
sorry I can’t help unless you tell me what you mean by ‘it’s not working’
In reply to: How do to activate classic theme for BBPress forum?bbpress works fine with classic themes (ie non block themes), so you should have no problems.
However bbpress is an integral plugin to your website, so it will use whatever theme your site is using, so you cannot have one theme for wordpress and another for bbpress.
In reply to: Show only Ipv4 addresses to moderatorsok, I took another look at this, and this new version should show ip4 but not ip6
add_filter ('bbp_get_author_ip', 'rew_hide_v6') ; function rew_hide_v6 ($author_ip='') { if (strlen($author_ip)>55) $author_ip='' ; return $author_ip ; }In reply to: Show only Ipv4 addresses to moderatorscontact me via
that message only shows for moderators and keymasters, ordinary users do not see it
In reply to: last active time updates for spam commentsthat would seem to be a good idea.
Without re-reading this thread, do you have code that fixes?
Install
once activated go to
dashboard>settings>bbp style pack>Topic Index Styling
Item 16 – you can set to have no message
In reply to: Show only Ipv4 addresses to moderatorsIn reply to: Show only Ipv4 addresses to moderatorsDid you read the cloudfare link that said they might not be seeing the real IP address, but rather a cloudfare server address? may or not be relevant.
The classes for that are
bbp-reply-ip
bbp-topic-ipso should be
.bbp-reply-ip, .bbp-topic-ip{ text-align: left !important; }In reply to: Show only Ipv4 addresses to moderatorsok so your first post said the exact opposite 🙂 ie they didn’t want to see the IP6
In reply to: Show only Ipv4 addresses to moderatorsapologies, try this
add_filter ('bbp_get_author_ip', 'rew_hide_v6') ; function rew_hide_v6 ($author_ip='') { if (strlen($author_ip)>20) $author_ip='' ; return $author_ip ; }In reply to: Need help in user rolesInstall
once activated go to
dashboard>settings>bbp style pack>Moderation (third row down, right hand side)
and follow the instructions/guidance
In reply to: Show only Ipv4 addresses to moderatorsok, so we can hide the ip6, but getting the ip4 is harder i think.
I found this post relating to Cloudfare which tends to indicate that even an ip4 might be just a Cloudflare address, but I only spent 2 minutes reading though !!
https://wordpress.org/support/topic/real-ip-for-the-customers-cloudflare/
so to hide an IP6, try this (untested!)
add_filter ('bbp_get_author_ip', 'rew_hide_v6') ; function rew_hide_v6 ($author_ip='') { if ($strlen($author_ip)>20) $author_ip='' ; return $author_ip ; }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
Let me know if it works
In reply to: Disable ability to edit comment/replydashboard>settings>forums>editing and disallow editing – moderators and keymasters can still do so
In reply to: Bulk unsubscribe all users from Forums and Topicsthanks, suspect sql is the easiest without loads of coding
In reply to: Bulk unsubscribe all users from Forums and Topicsso how often and why are you doing this – just trying to understand the problem.
please explain further, you seem to have both a title and a description on that page
my response crossed with yours.
Great – glad you are fixed !
Every website is a unique combination of hoster, operating and hosting systems (eg apache, PHp) WordPress theme, plugins, settings and content, so I cannot just give you an answer.
So between ‘some time ago’ (days? weeks? years?) and now – what has changed on your site?
If you cannot answer that, then I can only suggest the core fault finding viz..
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.
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
ok, so it was working – yes?
ok, so it was working – yes?
If so something has changed to stop it working, eg theme or plugin update, but could be other things.
Ok, so what have you updated?
no problem, glad to have helped 🙂
If I understand you correctly, you use the ‘code’ option
eg
<b> some words </b>So you type all your ‘code’ and then highlight it, and click the code button.
In reply to: Permalinks in replies lead to the wrong pageiltaja is an AI spambot I suspect, this forum gets lots of these.
If not I’m sure they will reply again.
From your post about changing number of replies to 13, if the ‘faulty’ post is changing, then I suspect that looking at the database won’t help at this stage.
Let me do some more thinking…