Forum Replies Created
-
In reply to: Too many homepage queries
OK – I think that was the first query before caching had taken effect, because I reloaded the page and got:
0.126 – 33 queries
Any ideas why the drastic reduction?
In reply to: Online List doesn’t work with 0.9.0.2 / 2.5.1_ck_ – any update on your much wanted online list plugin? It would be much appreciated, even if it’s just in it’s current state running on your showcase site…
In reply to: wysiwyg editor for postsI hacked together a TinyMCE plugin, which works OK ( as seen on http://www.winningelevenblog.com/forums ), but it does have some quirks, shall we say. You might need to install the ‘allowedtags’ plugin (I think that’s what it’s called) too..
In reply to: Online List doesn’t work with 0.9.0.2 / 2.5.1It’s been the same 1.5 plugin all along – I’ve de/re-activated it a few time, and still no joy. Is there any way to clear from the DB what it might be storing, so I can start again from scratch? Maybe the way 2.5.1 and 0.9.0.2 integrate has confused it compared to the older versions.
In reply to: Online List doesn’t work with 0.9.0.2 / 2.5.1I don’t get any errors, just a constant “No members around” message – it used to at least list me when I was logged in.
Nevermind, upgrading to 0.9.0.2 fixed it.
Also, probably as part of the same problem, administrators for bbpress can’t get to the presentation or site management tabs – they’re not there, so I can’t disable any of the plugins!
In reply to: Plugin: Page links for bbPress_ck_’s “bbpress topic limit” plugin seems to screw with the count for this plugin – I get 9 pages for topics which only have 3, and other weird calculation errors – anyone know of a fix?
In reply to: subforums taking a lot of spaceSomeone pointed me to this:
<?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; ?>
In reply to: bbPress post 0.05Hi,
Thanks for the update – it fixed a few things I was waiting for – just one thing I’ve found – when you change the Author for a WP post, the Author for the blog post doesn’t change. It’s not a major thing, just something I’ve found…
That’s just what I was looking for – thanks _ck_
In reply to: Hiding Subforums on The HomepageThat’s exactly what I was after – thanks.
In reply to: Hiding Subforums on The HomepageAhhh… great, thanks. Next question, just about on topic, has anyone modified their front page bb_forum() loop so that sub-forums appear like they do on http://www.avforums.com/forums/index.php – just the title, but in the same row as the parent?
Thanks,
In reply to: Hiding Subforums on The HomepageI have a different, but related problem – I only want to hide the descriptions for the sub forums on the homepage, not the whole table row. What if statement do I wrap around <?php forum_description(); ?> to do that?