Forum Replies Created
-
In reply to: Full responsive Headers
#bbpress-forums ul.forum-titles li.bbp-forum-info { font-size: 1.5em; } #bbpress-forums ul.forum-titles li.bbp-forum-topic-count { font-size: 1.5em; } #bbpress-forums ul.forum-titles li.bbp-forum-reply-count { font-size: 1.5em; } #bbpress-forums ul.forum-titles li.bbp-forum-freshness { font-size: 1.5em; }
In reply to: Disable Ability to Reply🙂
In reply to: Display author email with topic🙂
In reply to: Forum Admin Permission issue🙂
In reply to: Display forum in recent replies and topic widgetsIn reply to: How to redirect non-member to registration formsuggest you contact the GD bbPress Toolbox Pro author to se if he can help
In reply to: Display author email with topicThis will display emails in topics
add_action( 'bbp_theme_after_reply_author_details', 'rew_author_email' ); function rew_author_email () { $id = bbp_get_reply_id() ; if (bbp_is_topic( $id ) ) { $author_id = bbp_get_topic_author_id( $id ); $user_info = get_userdata($author_id ); $user_email = $user_info->user_email; echo $user_email; } }
Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
In reply to: Disable Ability to ReplyPut this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
add_filter( 'bbp_current_user_can_publish_replies', 'rew_do_not_allow_anon' ); function rew_do_not_allow_anon ($retval) { if ( ! is_user_logged_in() ) { $retval = false ; } return $retval ; }
In reply to: Full responsive Headerslink to an example on your site please
In reply to: Forum Admin Permission issueThis plugin should be your answer
In reply to: Topics and Replies not showing after importok
In reply to: Topics and Replies not showing after importthat might work, but so should the fix forum post parent plugin above – not clear if you had tried that ?
In reply to: add a link to discussion$content_to_add = '<a href="\create-new-post?vis='.$current_user_id.'">Add new blog</a>';
In reply to: cannot edit, delete or close a topicit has little overhead on load time for your site
In reply to: Need Larger fonts and darkertypically will be
dashboard>settings>bbp style pack>forums index styling and topics index styling
In reply to: change forum post authorgreat – glad you are fixed
In reply to: Need Larger fonts and darkerso did you try style-pack ?
In reply to: Need Larger fonts and darkerso have you tried bbp-style-pack?
In reply to: add a link to discussionyou would probably need to hook to
apply_filters( ‘bbp_get_topic_content’, $content, $topic_id );
after that beyond free help from me I’m afraid 🙁
In reply to: Change Forum Pages Widthsorry, this is theme related, not bbpress
In reply to: How to redirect non-member to registration formnothing I know of does this exactly
In
dashboard>settings>bbp style pack>Topics index styling item 19
you can add a register option
In reply to: cannot edit, delete or close a topic@neon67 – I wrote style pack because I had hundreds of code changes that did little bits and no way to control. So either it’s style pack, or you’ll need to start working out how the functions file in style pack does it – it’s around line 2356.
In reply to: Generate Password Issue WP 5.6
I am not sure what changed it in the first place.
nor am I! – I suspect a css change on WordPress, but could spend days and lose the will to live if I tried to find it 🙂
Anyway, glad you are fixed
In reply to: Need Larger fonts and darkerThis seems like an easy fix for a developer
Unfortunately not – bpress plays well with many themes, but lots of themes do their own thing, and there is no way bbpress can work out what every theme is doing with fonts. bbpress adheres to wordpress standards and conventions.
Open foundation software is free, but it replies on people adhering to conventions that can constrict a plugin or theme author, or they are ignorant of, as many of the ‘rules’ are unwritten.
I wrote style pack to help where themes do not work well with bbpress, but even then, some decide to copy css from bbpress and these then overwrite style pack.
I feel your pain, but not an easy one to fix 🙁
In reply to: Generate Password Issue WP 5.6put this in the custom css area of your theme
#bbpress-forums #bbp-your-profile fieldset fieldset.password { display: none; }
and let me know if it works !