Hello,
This simple use-case is not documented anywhere … how can I add a vanilla simple forum to my wordpress hosted blog web site?
TIA,
Best regards,
Giovanni
Hello,
This simple use-case is not documented anywhere … how can I add a vanilla simple forum to my wordpress hosted blog web site?
TIA,
Best regards,
Giovanni
Hi guys,
I’m still having issues on how to change my avatar. My idea is to also allow registered user to do the same. I have installed the Avatar blugin for bbpress and tried to follow some steps but can’t seem to have it working.
Can someone break it down for me PLEASE on how to make it work for the Kakumei theme.
I’ll really appreciate it.
Thanks in advance.
Gio-
I’d like to move my phpBB forum into a bbPress system? Is it doable? If so could you provide me with links?
Thanks in advance!
How can i add a custom page on wordpress theme with bbPress? Is there any function to call?
example link: http://img34.imageshack.us/img34/9774/bbpress.png
<?php
/*
Template Name: Forum
*/
/**
* @package WordPress
* @subpackage Default_Theme
*/
get_header(); ?>
—->>> What to put here to show my bbPress forum?
<?php get_footer(); ?>
How do i increase the number of posts per page in my forum so that the posts per thread not go a second and third page.Currently after 20 posts it goes to second page, i want them on one page if possible.
Thanks
Hi,
I would like my users to post new topics and replay posts without a need to logg in. How can I achieve this?
thanks in advance
cheers
pete
I recently started using this WordPress PHP implementation of the Markdown http://michelf.com/projects/php-markdown/
Right now it only supports Posts and Comments. Topics and Replies don’t get aprsed.
This comes from markdown.php:
# Post content and excerpts
# - Remove WordPress paragraph generator.
# - Run Markdown on excerpt, then remove all tags.
# - Add paragraph tag around the excerpt, but remove it for the excerpt rss.
if (MARKDOWN_WP_POSTS) {
remove_filter('the_content', 'wpautop');
remove_filter('the_content_rss', 'wpautop');
remove_filter('the_excerpt', 'wpautop');
add_filter('the_content', 'Markdown', 6);
add_filter('the_content_rss', 'Markdown', 6);
add_filter('get_the_excerpt', 'Markdown', 6);
add_filter('get_the_excerpt', 'trim', 7);
add_filter('the_excerpt', 'mdwp_add_p');
add_filter('the_excerpt_rss', 'mdwp_strip_p');
remove_filter('content_save_pre', 'balanceTags', 50);
remove_filter('excerpt_save_pre', 'balanceTags', 50);
add_filter('the_content', 'balanceTags', 50);
add_filter('get_the_excerpt', 'balanceTags', 9);
}
How to modify the line above to be effective for Topics and Replies?
Please Help…Why can’t my users edit their profile page but I can as the admin of the site? The link is not there…only profile and favorites links…not edit link….Thanks in advance…
Hello,
Is there anyway that i add a link to my navigation bar with bbPress that’s opening in the same page like wordpress with sidebars and all other things around.
Example link:
http://img34.imageshack.us/img34/9774/bbpress.png
I would like to know how to start a custom bbPress loop to display the recent 5 posts of a certain forum (say Forum Test 1).
In WordPress I create custom loops like this:
`<?php $custom_posts = new WP_Query(); ?>
<?php $custom_posts->query(‘post_type=bbp_topic&posts_per_page=5’); ?>
<?php while ($custom_posts->have_posts()) : $custom_posts->the_post(); ?>
<div class=”block-2 border-top”>
<h2><a href=”<?php the_permalink(); ?>” title=”<?php printf( esc_attr__( ‘Permalink to %s’, ‘twentyten’ ), the_title_attribute( ‘echo=0’ ) ); ?>” rel=”bookmark”><?php the_title(); ?></a></h2>
<?php the_excerpt(); ?>
<p><?php comments_number(‘0 Replies’,’1 Reply’,’% Replies’); ?>.</p>
</div>
<?php endwhile; ?>`
How to do what I mentioned above in bbPress 1.1?