Forum Replies Created
-
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
great – glad you are fixed !
In reply to: Freshness is way offthat bar can be hidden
once activated go to
dashboard>settings>bbp style pack>Forum Display
In reply to: Freshness is way offtry
dashboard>tools>forums>repair forums and run one at a time
In reply to: Edit the bbPress login widgetgreat – glad you are fixed
In reply to: Freshness is way offIn reply to: Recent Topic Missingit went into a pending file – now approved
In reply to: Edit the bbPress login widgetTry adding this to the custom css of your theme
input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="number"], textarea, select { margin-bottom: 0rem; padding: 0px; }In reply to: bbp-topic-form won’t show up properly on mobileok, just looked at your site – seems ok, what part EXACTLY is the problem?
In reply to: Edit the bbPress login widgettheme dependant – need a link to a live example
In reply to: bbp-topic-form won’t show up properly on mobileat the moment the whole forum page looks bad