Search Results for 'bbpress'
-
Search Results
-
im trying to put buddypress x-profile fields in bbpress on loop-single-reply.php after the author role and avatar
I have created one called Location
my function to display it is
<div class="bbp-usr-location"><?php if ( bbp_is_topic_anonymous() ) { echo "<br>Guest Post"; } elseif ( bbp_is_reply_anonymous() ) { echo "<br>Guest Post"; } else { $user_location = xprofile_get_field_data( 'Location', ( bbp_get_reply_author_id ( bbp_get_reply_id() ) ) ); echo 'Location: ' . $user_location; } ?></div>I just want to not display it if its not filled in on buddypress
Any Help?
Hello All !
I need to list the last 8 topics in this widgets, and have a link to the next page of 8 topics, and so on.It would be like a pagination for every 8 topics.
I think the file is widgets.php in lines :
case 'newness' :
default :
$topics_query = array(
'post_type' => bbp_get_topic_post_type(),
'post_parent' => $settings['parent_forum'],
'posts_per_page' => (int) $settings['max_shown'],
'post_status' => array( bbp_get_public_status_id(), bbp_get_closed_status_id() ),
'ignore_sticky_posts' => true,
'no_found_rows' => true,
'order' => 'DESC'
);
I know that ‘posts_per_page’ show the last topics, in my case 8, but i dont know how to access to 8 before.
Any help or idea please?
Hi, I am using the latest versions of both WP and BBPress.
My problems are that when I try to add stuff to my style.css, my BBPress pages just don’t seem to follow them…
Here is an example:
>> Remove menu/nav bar and search form from all pages (style.css)/* Remove nav bar and search form */ .page #nav-bar { display: none; } .page #s { display: none; }The code works on all other pages (BuddyPress ones included), just not any BBPress pages..
Does anyone have any ideas as to why?I am no coder or expert so this has totally thrown me lol.
im trying to put a function in loop-single-topic.php right after
<?php do_action( ‘bbp_theme_before_topic_started_by’ ); ?>
Replacing the whole (Started By: “user” in “forum” function)
Im trying to make the new function display as (Last Post “freshness time ago” By “User”)
I dont know anything about php and how to use it , right now im basically just looking at each function and see how it works.
The best i got right now is pretty much copy and pasted from the freshness column functions.
This is the best i have
<span class=”bbp-last-post-by-author”><?php printf( __( ‘Last Post %1$s’, ‘bbpress’ ), bbp_get_topic_freshness_link( array() ) ); ?></span>
I still need to display this
<?php bbp_author_link( array( ‘post_id’ =>bbp_get_topic_last_active_id()
but i dont know how to hook it all together, please help.
I imported VBulletin 4+ in bbPress and when I goto Forums I can see all the the threads but when I click on one of them this is what shows.. see picture.

Topic: bbpress editor
Hello
I have a problem with the editor in bbpress .. the content is displayed with the html code ..
I am using Ultimate TinyMCE editor with the option of wpautop set off and I put this code in the functions.php of the theme to enable mce editor :
function bbp_enable_visual_editor( $args = array() ) {
$args['tinymce'] = true;
return $args;
}
add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );
What could be the problem, I tried using Tiny MCE Advanced but the same problem occurred
is this a theme problem?Im using :
Wordpress version 3.8.3
bbpress version 2.5.3
Ultimate TinyMCE version 5.3Thanks
Topic: Edit leading to 404 page
I created a forum with WP 3.8.1 and bbPress 2.5.3. Here: http://ozziecoin.com/index.php/forums
When I press edit, I get a 404 error. When I press on username, I also get a 404 error.
Topics seem to work ok. Can anyone offer any hints where I should start looking?
I’ve tried modifying .htaccess to include: Options FollowSymlinks and AllowOverride All
Also, tried resetting permalinks to default and back to current setting of /index.php/%postname%
Thanks in advance for your further suggestions.
I changed my website URL and brought the existing database and all files over (basically used the same hosting account and database). I did export all databases, ran it through a site that changes the URL in all databases, and then re-imported the changed database SQL file.
Everything seems to work fine… except the bbpress forums. They wont load. I’m not able to find a file or setting to see if the url is set right. Where do I look and what must I change?
