Forum Replies Created
-
In reply to: Unable to access the RKK Login Widget plugin
Yes, this widget is no longer available.
For you if you have the style pack plugin, you can use the bsp-profile shortcode instead
[bsp-profile label="amend profile/password" edit="true"]
You can simply add a shortcode block after the login widget.
In reply to: Need help in user rolesso what have you got set in :
dashboard>settings>forums>moderation Options>hold for moderation ?
In reply to: How do to activate classic theme for BBPress forum?ok, I see that in parallel you have been pursuing this with their support (which would have been useful information to post here, and saved me some duplicate testing time)
I will continue on that thread, so that their author gets to see the communication
In reply to: How do to activate classic theme for BBPress forum?ok, what other bbpress related plugins are you usin?
In reply to: How do to activate classic theme for BBPress forum?can you state exactly what the ‘Block Theme 2025’ is, as I cannot find a theme with exactly this name.
If you have a link, that would be useful
In reply to: Need help in user rolessorry 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?