Forum Replies Created
-
In reply to: New Roles
Always worth composing a long post on your PC first :-), I’ll come back with an answer on your other post
In reply to: Help!! Please!!@celticsweb – ok, let’s see if we can help.
Firstly
Hi okay so I added 2 more roles by following the link above
I appreciate you probably tried to add a link, but it didn’t come through. Without knowing how you did this, it’ll be hard to help further, so come back with that first
In reply to: How to turn off page intro in forum?ok, we’ll need a link, as I suspect that ‘page into bar ‘ is either a theme related thing or your theme is doing something with the wordpress toolbar.
how is this bbpress related?
ok that’s just because you can have only one function name, and this is duplicating an existing oine (in a plugin I wrote!)
Do this instead
//This function changes the text wherever it is quoted
function orko_change_translate_text( $translated_text ) {
if ( $translated_text == ‘Forum’ ) {
$translated_text = ‘new text’;
}
return $translated_text;
}
add_filter( ‘gettext’, ‘orko_change_translate_text’, 20 );In reply to: can’t create sub-pages under “Forum” parent pageNo problem, glad you’re fixed !
In reply to: can’t create sub-pages under “Forum” parent pageIn reply to: can’t create sub-pages under “Forum” parent pageYou are, but I suspect that you’ll need to move to manual menu’s to make it work
go to
appearance>menus and create a menu there
In reply to: can’t create sub-pages under “Forum” parent pageok, bbpress use pages slightly differently.
Are you trying to get the sub page to show in the menu?
In reply to: can’t create sub-pages under “Forum” parent pagehmmm. not really sure exactly what you are trying to do.
How did you create your forum page?
In reply to: Privacy issue with group forumsIn reply to: How to add a topic stats column like BBPressin 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.