Forum Replies Created
-
ok,
1. create a page called ‘profile’, it needs no content, but make sure the permalink is ‘profile’
2. in dashboard>settings>wp members>pages>profile select the profile pagethen use this code
add_action( 'template_redirect' ,'rew_profile' ) ; function rew_profile () { update_option ('rewurl' , $_SERVER['REQUEST_URI'] ) ; if ($_SERVER['REQUEST_URI'] == '/profile/') { $user_id =get_current_user_id() ; $url = bbp_get_user_profile_url( $user_id ) ; exit( wp_redirect( $url ) ); } }
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
if it works for a topic, then I’ll do the code for a reply, which is basically changing mthe word topic to reply 🙂
ok, give this a try – it may or may not do the trick !!
add_action ('bbp_new_topic_post_extras', 'rew_spam_update_last_active', 10 ,1 ) ; function rew_spam_update_last_active ($topic_id) { //this function tests if a new topic has been marked as spam by Akismet. If so then the last active date will be wrong //So we use topic walker to recalculate it if (!empty (get_post_meta( $topic_id, '_bbp_akismet_user_result' ))) { bbp_update_topic_walker ($topic_id) ; } }
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
just posting this link here for reference for me 🙂
In reply to: Akismet causing “recent topics” problem?@sbask – sorry so many users I can’t remember – did we fix this one, and if so how?
yes it does (and does so on here as well!).
I’m just a helper here, not a bbpress author.
I don’t run akismet on my test site. Are you able to replicate the problem so that we can check a fix if I am able to work up some code?
is this the free plugin here
In reply to: @mentions for bbpressok, quite a while ago that I last looked at this area, I’ll try and take a fresh look when I can.
In reply to: @mentions for bbpressTry this
In reply to: One forum category doesnt showing up.no problem, glad that you are fixed 🙂
In reply to: One forum category doesnt showing up.I fully understand – you have an issue where one forum is not showing. Given that showing these forums are settings within your theme or LMS, not within bbpress, then it most likely that it is a setting somewhere within this.
so you can try one last thing
dashboard>settings>permalinks and just click save – this resets the permalinks and may help
then if you srea still convinced that it is not theme or plugin, you can prove this using
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
In reply to: One forum category doesnt showing up.I don’t use either the theme or LMS, so I can’t say what settings you would need to look at, can only suggest you contact the theme author, or plugin authors of restrict content and/or LMS
In reply to: One forum category doesnt showing up.ok, so it will I suspect be a setting that those use , so suggest you see what differences there are with that forum vs. the others
In reply to: Forum and Chatbbpress gives you the forum
buddypress and/or this should give you the messages
Better Messages – Live Chat for WordPress, BuddyPress, BuddyBoss, Ultimate Member, PeepSo
In reply to: How to edit forum user role compatibilities?sorry, ‘bbPress – Report Content’ is not a bbPress authored plugin – you would need to raise this with the plugins author.
In reply to: One forum category doesnt showing up.so what plugin/theme are you using that restricts access?
In reply to: bbPress single topic + ElementorGreat – thanks for posting your solution 🙂 🙂
In reply to: How to edit forum user role compatibilities?In reply to: Edit Topic Page🙂
In reply to: bbPress single topic + ElementorIf you do fix, please do post back your solution here to help others
In reply to: bbPress single topic + Elementor🙂
In reply to: bbPress single topic + Elementorif you are using the hello theme, then try
In reply to: Can’t work out how to link to mobile?looks like you could use this, but check that bbpress is covered.
In reply to: Can’t work out how to link to mobile?no, sorry no app !
In reply to: Topic submission form customisationso you are happy that in the forum display, the topic content box will be there, but show nothing ?
for 1,3&4
#bbpress-forums fieldset.bbp-form input[type="text"] { width: 100% !important; } div.bbp-submit-wrapper { width: 100%; }
add this to the custom css of your theme