Forum Replies Created
-
In reply to: How to add a topic stats column like BBPress
in your function file
In reply to: How to promote myself to keymaster?you must have another plugin as well.
I can only suggest you contact you administrator
In reply to: New Topic Link not showing on fronted for usercreate a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpresswhere %your-theme-name% is the name of your theme
find
wp-content/plugins/bbpress/templates/default/bbpress/user-topic-created.php
Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/user-topic-created.php
bbPress will now use this template instead of the originalThen modify or overwrite woth your modified file
In reply to: BP overrides forumsearchI see you’re getting some help in the buddypress site, and hopefully they can fix you
In reply to: New Topic Link not showing on fronted for useryou can put a button on the forums pages using
https://wordpress.org/plugins/bbp-style-pack/
go to settings>bbp-style-pack>forum display and no. 5
In reply to: How to promote myself to keymaster?admin and keymaster are two seperate things
If you are an admin (or someone who is does this)
go to
Dashboard>users>all users and select your profile and edit
Near the bottom, you’ll see your bbpress lkevel, set this to keymaster
In reply to: Which members subscribed to which forums?bbpress doesn’t auto subscribe to new topics
try
and whilst you’re there this is useful too
If you want to change it everywhere then put this in your functions file
//This function changes the text wherever it is quoted
function change_translate_text( $translated_text ) {
if ( $translated_text == ‘Forum’ ) {
$translated_text = ‘new text’;
}
return $translated_text;
}
add_filter( ‘gettext’, ‘change_translate_text’, 20 );In reply to: It worked fine until my sunspot Theme updatedok, I’d suspect that your theme had a copy of a template in it when it was originally set up. Did you set this site/theme up?
In reply to: It worked fine until my sunspot Theme updatedhmm.. link to your site and page with an issue
In reply to: User ranking system?great – glad you’re fixed !
In reply to: User ranking system?something like
function display_counts () { $user_id=bbp_get_reply_author_id( $reply_id ) ; $topics = bbp_get_user_topic_count_raw( $user_id); $replies = bbp_get_user_reply_count_raw( $user_id); $post_count = (int) $topics + $replies; if ($post_count >100) { echo '<br>Hero' ; echo "</br>" ; } else { echo "<br>Total posts : " ; echo $post_count ; echo "</br>" ; } } add_action ('bbp_theme_after_reply_author_details', 'display_counts') ;In reply to: How to: registration and loginDuh !! Sorry I was being an idiot – forgot to put the site in !
http://www.rewweb.co.uk and get my email from the contact page
In reply to: Error in Installation?sorry for the delay in replying
Yes looks like one is affecting the other
It may be worth you contacting the Find and replace plugin author to see if they can fix.
In reply to: How to: registration and loginok, have you activated it in the menu?
If so, can you send me via my website
the settings in the style pack login tab
The full url you mention in (when i successfully login the url gets: %2F added to the end .. if that helps ..)In reply to: Menu link to ProfileTry
https://wordpress.org/plugins/bbp-style-pack/
go to the logion tab, and you’ll see an option to add a profile link to the menu
In reply to: How to: registration and loginHave you set the login page?
In reply to: How to: registration and loginIf you install
https://wordpress.org/plugins/bbp-style-pack/
and go to the login tab, you can set a redirect page
In reply to: Hide a forum from certain userssee my above post
In reply to: Add forum description to forums indexthe code should still work.
Try
https://wordpress.org/plugins/bbp-style-pack/
there is a setting in forum display that should do the same function
In reply to: how to change forum roles programmaticallygreat glad you’re fixed
In reply to: Hide a forum from certain usersyou could try
In reply to: LestifyThe issue is with the theme, not bbpress, so you would need to understand and correct the theme.
In reply to: How to make your bbpress fullpageIn reply to: LestifyAs it’s a paid theme, consult theme forest support