I want to know if there is a way to display the titles of forum topics in WordPress with a link to the thread so that visitors to the front page will be able to see if there is something new on the forum without having to check it.
Display forum topics in WordPress
Published on November 10th, 2007 bySpam Registration
Published on November 10th, 2007 by NullCan we PLZ get someting against the Spam Registration??? Captcha perhaps??? Or a Captcha like plugin?
My board is getting spam regisdtrated to death if this keeps up
Stick to front removes topic from forum?
Published on November 10th, 2007 by tbronsonWhen I stick to front, the topic disappears from its forum index. The topics count remains the same on the front page, but when you click into the forum, the stickied topic is not there.
Is this a bug, or normal behavior?
I’m using 0.8.3.
Thanks!
Now that interface is dead…
Published on November 9th, 2007 by NullWell, interface is dead. It will not be developed further. Instead they have created jQuery UI and replaces interface.
My question, bbPress uses the interface libary (which part of bbPress uses it anyway?), will it be dropped and be replaced with jQuery UI?
Though UI is still a bit buggy, it is going to replace interface.
More info:
http://www.jquery.com
http://ui.jquery.com
get favorites list
Published on November 9th, 2007 byHi,
Is there a way of getting a user’s favorites to display without on a forum page other than /profile/#/favorite ?
I’ve looked at the code but I don’t want to dig too deeply into it as I’m sure it will change a lot during the next year.
Basically what I want to do is create a unified profile page, which has been possible with everything except favorites.
See http://www.surrealroad.com/forum/1 if this doesn’t make sense
Agregar nueva categoría de temas
Published on November 8th, 2007 by grmnHola, quería saber si es posible crear una nueva categoría de temas??
El básico tiene los temas generales y quiero agregar una nueva categoría.
Saludos,
grmn
How to get the id from the second row? (Mysql)
Published on November 8th, 2007 by NullHi,
I have a query and it shows me 5 results
Now, I always need the id from row 2 (result 2). How to get it?
Greetz
A way to ping-o-matic when a new post comes in?
Published on November 8th, 2007 byHow would I ping ping-o-matic every time a new thread of post is made?
I think this would be good because I have bbpress kind of setup like a blog in a way.
Winning Eleven Next-Gen
Published on November 7th, 2007 bywww.winningelevenblog.com
www.winningelevenblog.com/forums/
Upgraded site now features WP/bbP install, a new style, and a load of plugins. There’s a few things to sort out, but overall bbP has been awesome!
Count subforum posts in parent count?
Published on November 7th, 2007 byHi,
Is it possible to modify my forums loop (below) to count the posts in subforums in the total for the parent? My subforums are displayed inline, rather than in a separate row, and the parent forum looks a bit weedy without the “real” count.
<?php while ( bb_forum() ) :
global $bb_forums_loop;
$_loop =& $bb_forums_loop;
if($_loop->walker->depth >= 2) : ?>
<tr<?php bb_forum_class(); ?>>
<td colspan=”3″ class=”subforums”><?php bb_forum_pad( ‘<div class=”nest”>’ ); ?>Subforums:
<?php
while ($_loop->walker->depth > 1) :
if($_loop->walker->depth > 2) {
bb_forum();
continue;
}
?>
bb_forum();
if ($_loop !== null && $_loop->walker->depth > 1)
echo ‘, ‘;
endwhile;
?>
</td>
</tr>
<?php endif; ?>
<?php if ($_loop !== null) : ?>
<tr<?php bb_forum_class(); ?>>
<td class=”topic”><?php bb_forum_pad( ‘<div class=”nest”>’ ); ?>“><?php forum_name(); ?>
<?php forum_description();?><?php bb_forum_pad( ‘</div>’ ); ?></td>
<td class=”num”><?php forum_topics(); ?></td>
<td class=”num”><?php forum_posts(); ?></td>
</tr>
<?php endif; endwhile; ?>
Thanks,