Search Results for 'bbpress'
-
Search Results
-
I don’t have any place on the left side bar to edit BBpress and when I go into the settings of the plugin I see this message:
You do not have sufficient permissions to access this page.
I have 3.7.1 of wordpress installed
I just uploaded the most recent version of bbpress
My site is http://www.bodyredesignonline.com
I was previously using the Question and Answer Forum plugin, and have recently decided to switch to bbPress. Is there a way to convert/import all of the questions and answers that were created while using Q&A Forum so that they are available in my new bbPress forums?
Topic: bbp_add_caps function ?
Hello there, I just went through some problems where the bbPress capabilities were not registered in the wp_user_roles option_name row entry. I don’t know what caused it but I was trying to see if I uninstalled/reinstalled bbPress it might reset the capabilities. It didn’t.
So I got hunting through the code and I found this function:
/** * Adds capabilities to WordPress user roles. * * @since bbPress (r2608) */ function bbp_add_caps() { // Loop through available roles and add caps foreach ( bbp_get_wp_roles()->role_objects as $role ) { foreach ( bbp_get_caps_for_role( $role->name ) as $cap => $value ) { $role->add_cap( $cap, $value ); } } do_action( 'bbp_add_caps' ); }But nothing seem to ever call this function. I did a search through all of the plugin code and there aren’t any references to this function. What gives?
In the end I was able to force the capabilities to be rebuilt by adding this function call inside another function that I knew was being called and it worked (I’ve since removed this).
BTW, this is on WP 3.7.1, bbPress 2.4.1.
Thanks!
PatrickTopic: HTML Not Rendering in Posts
Hi. I understood that I could post HTML formatted content into bbPress. But when I do, the formatting is ignored. Does someone know what I’m likely doing wrong?
Topic: Am I missing something, or..
Hello everyone.
Is there a proper codex site anywhere with all the functions/hooks and all the good stuff properly documented anywhere? For example I found a function called bb_is_home(), and I wanted to know what EXACTLY that checked for, but after researching it, I couldn’t find a single real reference or documentation of it.
Am I missing something? Because the http://codex.bbpress.org/type/functions/ has only about 5 functions. Surely there is a list of functions somewhere?
Thanks
Is it possible to show a user’s forum topic count(or post count) in the buddypress profile page? It feels like it should be simple enough but hours of googling and reading topics here has left me more confused than when I started.
I can see its possible on a bbpress profile page, where it’s using:
<p class="bbp-user-topic-count"><?php printf( __( 'Topics Started: %s', 'bbpress' ), bbp_get_user_topic_count_raw() ); ?></p> <p class="bbp-user-reply-count"><?php printf( __( 'Replies Created: %s', 'bbpress' ), bbp_get_user_reply_count_raw() ); ?></p>Should I be calling a different function altogether, or is there a specific way to put bbPress functions inside a BuddyPress template page?
A good example of what I mean is at Tamriel Foundry, where the various counts are listed under the heading Post Details. (The design of that site in general is amazing)
Any help would be greatly, greatly appreciated! And apologies if you are reading this for a second time, I wasn’t sure whether to post my query at the Buddypress or bbPress forums.
Topic: Menu link to Profile