Forum Replies Created
-
In reply to: Topic/reply content font size
install this plugin
https://wordpress.org/plugins/bbpress-genesis-extend/
try this CSS
#bbpress-forums .bbp-reply-content p, #bbpress-forums .bbp-breadcrumb p { font-size: 15px; }
In reply to: bbPress and BuddyPress – Need Insight, Pleaseif you feel like just using bbPress there are these two plugins.
bbPress has a group plugin
https://wordpress.org/plugins/bbp-private-groups/
and a friends plugin
In reply to: Just for membersi think maybe this plugin will help.
https://wordpress.org/plugins/bbpress-members-only/
maybe also this if you want to try groups
In reply to: insert bbpress team Lable/Bage on the top righttry this CSS instead.
#bbpress-forums .keymaster div.bbp-topic-content, #bbpress-forums .keymaster div.bbp-reply-content, #bbpress-forums .moderator div.bbp-topic-content, #bbpress-forums .moderator div.bbp-reply-content { background: #f8f8f8 url(images/team-member.png) top right no-repeat; }
In reply to: Avatar hovers over breadcrumbs on posts pageIn reply to: Display uppercase Letters in UsernamesThis should get a quite a few of the users names and turn them uppercase.
add this custom css where you can put custom css like in your child themes stylesheet or a custom css plugin.
a.bbp-author-name { text-transform: uppercase; }
your using some of the CSS i added plus the other users custom CSS in that topic you just copied and pasted from.
link to your URL of where i might see this issue.
In reply to: Footnotesif you are just using the shortcode , bbPress doesnt allow shortcodes for security reasons like users pasting the [bbp-login] shortcode
since i assume this is just for admins you can use this plugin to use the shortcode.
In reply to: Displaying User role beside their repliesalright but by default it does show.
in the default file of loop-single-reply.php
you will see this
<div class="bbp-reply-author"> <?php do_action( 'bbp_theme_before_reply_author_details' ); ?> <?php bbp_reply_author_link( array( 'sep' => '<br />', 'show_role' => true ) ); ?> <?php if ( bbp_is_user_keymaster() ) : ?> <?php do_action( 'bbp_theme_before_reply_author_admin_details' ); ?> <div class="bbp-reply-ip"><?php bbp_author_ip( bbp_get_reply_id() ); ?></div> <?php do_action( 'bbp_theme_after_reply_author_admin_details' ); ?> <?php endif; ?> <?php do_action( 'bbp_theme_after_reply_author_details' ); ?> </div><!-- .bbp-reply-author -->
this is the code that shows it , hence the show role = true
<?php bbp_reply_author_link( array( 'sep' => '<br />', 'show_role' => true ) ); ?>
In reply to: table with most popular topicsadd this to your child theme functions.php or a functionality plugin.
function rk_top_five_view() { bbp_register_view( 'top-five', __( '5 Most Popular Topics' ), array( 'meta_key' => '_bbp_reply_count', 'posts_per_page' => '5' , ' max_num_pages' => '1', 'orderby' => 'meta_value_num' ), false ); } add_action( 'bbp_register_views', 'rk_top_five_view' );
and then add this to your page.
[bbp-single-view id="top-five"]
In reply to: Freshness/Voice columnstry this CSS
.bbpress #content-area ul li, .bbpress #content-area ol li { margin-left: auto; }
In reply to: How to add QuickTags to bbpress editor??glad you solved your own issue.
now im going to play with the quicktags editor!!
In reply to: Specify Menue – Add “edit profile”you would need to do something like this.
Since it is hard to guess what your menu’s theme location is , i just put primary.
This does work in some default themes like Twentyfourteen though.
add_filter('wp_nav_menu_items','rk_bbp_menu_profile_link', 10, 2); function rk_bbp_menu_profile_link( $items, $args ) { if( is_user_logged_in() && $args->theme_location == 'primary') { $current_user = wp_get_current_user(); $user = $current_user->user_login ; $profilelink = '<a href="/forums/users/' . $user . '/edit">Edit Profile</a>'; $items .= '<li>' . $profilelink . '</li>'; } return $items; }
In reply to: Profile FieldsMake sure to keep BuddyPress questions on their site.
https://buddypress.org/support/
i can’t remember much but all you have to do is
go to users > profile fields
then add a field , and select the type of field you want to use
since you would have to use 332 breeds you might need to select a multi-select field.
since i dont know what direction you would want using profile fields , so it might be good to contact BuddyPress support.
In reply to: shortcodes meeaningits all self explatory really.
you can test them out by creating a test page and putting each shortcode into it to see what it does.
if you need help finding ids of bbPress post types install this plugin, then look in the certain post types section.
like say forums , you go to the WordPress back-end and go to forums> all forums and you will see all the forums post id to use for these shortcodes. It would be close to the same procedure for topics and replies.
In reply to: bbpress shortcodes view last repliesi tried to make this and failed at it.
you can look for tutorials on the web for creating this type of thing like this.
or you can hire a developer to create this type of functionality for you.
if you need to post a job at http://jobs.wordpress.net/
In reply to: bbpress activityim not sure about this , i cant tell if its a bug or not??
there have been a bug using BuddyPress Groups and bbPress lately. i dont know if this is part of it.
In reply to: New Posts Not Showingsorry for the late reply and nope i don’t have a quick fix
you might need to hire a developer to fix this for you.
if you want to share what the issue was you can do so here, and see if its a bug that needs to be reported for anyone else in your situation.
In reply to: Check if we are under a certain category/forumyou of course pass the ids of the specific forums and categories in each
()
this for category
if( bbp_is_forum_category() ) {
and i think this for forum
if( bbp_is_forum() ) {
In reply to: Weird: No Topic Content is displayedIn reply to: registered users with an existing database?i dont know what to tell you.
you might need to hire a developer to do this for you.
In reply to: Just for membersonly logged in users can see it??
paid members can join??
only logged in members can post??what exactly are you looking for.
In reply to: How to make my blog beautifulhire a web designer
post a job at http://jobs.wordpress.net/
In reply to: Reply to a reply notification?ahh i get what you are saying now.
maybe when we get @mentions and its notifications and that might be sort of what you are looking for.
im not that great at developing with php but im learning.
you could post a job at this site and hire a developer so they could create whatever you want though.