Forum Replies Created
-
In reply to: Give Admin/Keymaster ONLY a forum signature?
yes !
In reply to: Freshness – Every post is showed as ” Right Now”2.6.x is having issues with freshness.
Authors will be looking into it
in the meantime try
In reply to: Header Spacingwould require javascipt- sorry beyond free help
beyond free help I’m afraid !
In reply to: Header Spacingok, so you want to hide the form unless what ?
try this
add_action( 'bbp_template_before_user_profile', 'rew_add' ); function rew_add () { echo '<META NAME=”ROBOTS” CONTENT=”NOINDEX, NOFOLLOW” />' ; }
In reply to: Header Spacingcan you define/elobarate on what you mean by
‘but i cant get the page ID to work correctly’
In reply to: sub topics not showingok, can anyone who still has this problem let me know if they are using bbp toolkit
If so as a test try deactivating this (you can reactivate after) to see if this fixes.
Please report back
In reply to: Header Spacingtry this in the custom css area of your theme
#bbpress-forums { margin-top: 30px !important; }
and adjust the 30px to suit
of course this presume you have a child theme
template are designed to be alterable and added to your theme
so
find
wp-content/plugins/bbpress/templates/default/bbpress/user-profile.phptransfer this to your pc and edit whatever you want
and save
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpresswhere %your-theme-name% is the name of your theme
Then transfer the file you saved above 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-profile.phpbbPress will now use this template instead of the original
In reply to: Topics Count Off after Purging Spamgreat – glad you are fixed
In reply to: Header Spacingok, so
‘i want some space between the top and the forum.’
what is the top and what is the start of the forum?
presuming ‘replace_text’ does the heavy lifting, then
add_filter( 'bbp_get_reply_content', ‘replace_text' ) ; add_filter( 'bbp_get_topic_content', ' ‘replace_text’ ); with replace text looking like replace_text ($content) { //stuff to do the replacing.... return $content ; }
In reply to: Give Admin/Keymaster ONLY a forum signature?above amended – spotted an error
In reply to: Header Spacingif you take away you wanting to use/sell my details – I’ll take a look, but I don’t ‘accept’ on any site I don’t need.
In reply to: Notification emails content issuehmmm…not sure why – not a general issue, but you can amend emails using
In reply to: Give Admin/Keymaster ONLY a forum signature?untested but try
add_filter( 'bbp_get_reply_content', 'rew_reply_signature', 1, 2 ); add_filter( 'bbp_get_topic_content', 'rew_topic_signature', 1, 2 ); function rew_topic_signature ($content = '', $topic_id = 0) { $topic_id = bbp_get_topic_id ( $topic_id ); $user_id = bbp_get_topic_author_id( $topic_id ); $separator = '<hr />' ; $before = '<div class="bbp-topic-signature">' ; $after = '</div>' ; if ($user_id == 3) $signature = 'signature for user 3' ; if ($user_id == 57) $signature 'signature for user 57' ; if ( !empty( $signature ) ) $content = $content . $separator . $before . $signature . $after; return apply_filters( 'rew_topic_signature ', $content, $topic_id) ; } function rew_reply_signature ($content = '', $reply_id = 0) { $reply_id = bbp_get_reply_id ( $reply_id ); $user_id = bbp_get_reply_author_id( $reply_id ); $separator = '<hr />' ; $before = '<div class="bbp-reply-signature">' ; $after = '</div>' ; if ($user_id == 3) $signature = 'signature for user 3' ; if ($user_id == 57) $signature 'signature for user 57' ; if ( !empty( $signature ) ) $content = $content . $separator . $before . $signature . $after; return apply_filters( 'rew_reply_signature ', $content, $reply_id) ; }
Put this in your child theme’s function file – or use
In reply to: Spam RegistrationsIn reply to: sub topics not showingAfter a break at Christmas, I still looking at this one – some have it some don’t, some fix by running repair, some find that doesn’t work.
In reply to: Spam RegistrationsI’m not sure what you mean by a ‘spam registration’ – when a user registers, how could the system know whether they were a genuine user or a spam one ??
In reply to: Where?? Single Forum ID for shortcodeif you go into
dashboard>forums>all forums and put your mouse over edit on a forum, then at the bottom of the screen you will see
http://mysite.com/wp-admin/post.php?post=16426&action=edit
16426 is the ID of the forum
In reply to: Forum notification to subscribersWhere I have had problems with WordPress sending emails (mainly contact form 7), I have switched to SMTP using
and then setting ‘other smtp’ using your mail provider’s details.
This seems much more robust to sending emails, and preventing mail servers seeing this as spam
In reply to: Edit/change ‘noreply’@ email addresssee https://bbpress.org/forums/topic/remove-noreply-email-from-notification-emails/ for various answers