Forum Replies Created
-
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
In reply to: Very simple forum Signature with Xprofilehey no problem !
In reply to: Very simple forum Signature with XprofileThe bbp-signature plugin is designed to work with bbpress not with buddypress, so it works fine – I’ve amended your original post to reflect that for future users in the first post to save them needing to read the whole thread.
But the code wasn't too terrible
General open software etiquette is not to insult other software authors, we are all at different levels and any software that works is useful 🙂
The original author of this software is unable to continue supporting it, so I have access to it so that it can continue.
I think it was made to work with buddypress groups whitout xprofiles yes. A simple update could fix that.
If you’d care to suggest code that would make it work for users with and without buddypress, please contact me via my website, as I’d love to include it in the plugin
In reply to: Error in Installation?In reply to: display pages only if logged into bbpressI’d go with what you did, but put it in a child theme. That way it will be unaffected by changes to plugins or themes.
In reply to: How can users create topics?supporting and improving 6 plugins, 6+ websites, and helping out on here all as a hobby doesn’t leave much time so stuff may not be perfect. But it is free !
All suggestions for improvements welcomed.
In reply to: display pages only if logged into bbpresshttps://wordpress.org/plugins/restrict-content/
should do the trick