Search Results for 'bbpress'
-
Search Results
-
This is how I start a custom loop for a WordPress loop:
<br />
<?php $custom_posts = new WP_Query(); ?><br />
<?php $custom_posts->query('post_type=post&category=Uncategorized&order=ASC'); ?><br />
<?php while ($custom_posts->have_posts()) : $custom_posts->the_post(); ?><br />
<div class="project"><br />
<a>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_post_thumbnail(); ?></a><br />
<h2><a>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2><br />
<p><?php echo get_post_meta($post->ID, 'rw_services', true); ?></p><br />
</div><br />
<?php endwhile; ?><br />How to start a custom loop in bbpress 2.0, For example, topics from a certain forum or category? (and even show the reply count?)
Topic: Step by step guide
Hi a have wordpress website http://www.smile.mk/ and i need to install bbpress, is there any step by step guide for this.
Thanks
I recently looked at bbpress.org for the first time in a while and was excited to see the progress on the plugin.
I run a bbPress install that has thousands of signed in members and receives about 500k pageviews per month (1,000+ new topics, 18,000+ posts). It ain’t no Facebook, but with WP deep integration it requires a beefy dedicated server to keep it running smoothly.
I was wondering whether bbPress 2.0 was designed with something like this (or larger) in mind, or whether it is more for small forum use only.
The reason I ask is because I notice that (1) all topics/replies will go into the same db table and (2) some things that were denormalised in bb_posts/bb_topics for performance are no longer denormalised in the plugin. For the latter I’m thinking of the number of replies per topic, the last poster in a topic, etc.
It seems that the queries to build paginated topic lists might involve some quite complex joins over very large tables as a result. Is this the case, or am I missing some aspect of the design?
I know that the WP engine handles all of this for blogs, but blogs (even on wordpress.com, where each individual blog has its own post table) do not typically scale to 1000s of posts per day.
Bottom line, will bbPress 2.0 be advisable for larger installs? Or is that still a job for the standalone version?
Thanks.
Is there a private messaging plugin for bbPress 2.0 plugin branch?
I’ve just downloaded bbpm and it won’t run, i’m presuming it’s only designed to work with standalone bbPress?
Is there anything else recommended?
Thanks
Ashley
Hi, I’ve just installed bbpress and I’m having problems with table spacing. The first few letters get cut off in the main index, I’m left with “opic Title” instead of “Topic Title”, and the thread titles are missing the first 2 letters as well. I’ve done a string search for “topic title” in the bbpress directory, but I can’t seem to find the related code. Any advice on how to fix this problem?
http://www.noisechannel.org/forums/
Wordpress 3.1.3
BuddyPress 1.2.8
BP-Framework 0.3.6
Thank you!
Topic: Login problems
Hello
For two years bbpress and wordpress were working together just fine. Today something happened. For some reason people can login to the wordpress ($user_ID has got proper value), but they can’t reply to the topics (they can’t also create new topics). I print_r $_COOKIE and there is everything normal. The strange thing is also with the bb-admin. It redirects me to the front-page.php. I dug down and found bb_get_current_admin_menu, then bb_current_user_can and finally $bb_current_user (which is 0). So, the questions are: why bbpress stopped working with wordpress, how do I debug bbpress and where do I find queries/functions that matches $_COOKIE against database ?