Forum Replies Created
-
In reply to: Jumpstarting the bbPress Codex
I hope this codex isnt going to be just a really long forum post.
I hope the codex lists all bbpress functions, like wordpresses so’s we can build our own themes and stuff.
In reply to: IF User is logged in DO, if not DO…wooohooo, thanks Ohna, and thanks Markus for pointing out Ohnas post was different to James’s
I plan to release my theme to the general public and boy, its looking awesome.
In reply to: IF User is logged in DO, if not DO…I am getting
‘Fatal error: Call to undefined function is_user_logged_in() in C:wampwwwmassbasemy-templatesmassbaseheader.php on line 45’
same thing as Markus Pezold…
I am using the 1.0 relsease..
please help thanks.
In reply to: Logged-in User’s Gravatar to show on header.fixed.. img.avatar { border: 0px solid #ddd; }
In reply to: Logged-in User’s Gravatar to show on header.Many thanks timskii!
Ranked 100% on the Awesomage meter!
In reply to: How do I loop through EACH forum?Man you rock!
thanks a bunch for this.
In reply to: Jumpstarting the bbPress Codexim having to guess each and every class and function, just by how i might think they’re named…. I really can’t wait for the codex.
In reply to: How do I loop through EACH forum?if you know how to do this please, show me, <?php topic_title(); ?> seems as though it can only be used in a that foreach loop, i cant do a for loop and add ing <?php topic_title(); ?> inside of it.
In reply to: How do I loop through EACH forum?Still a problem, becuase the above solution spits out all the topics and not only 3 as Required..
can anyone help, on how to do a FOR loop for this, i dont get how the array $topics works?
please help.
In reply to: How do I loop through EACH forum?I didn’t find how to loop each category if there is such as thing, but I found this solution, its WORKS fine…
<?php if ( $topics ) : foreach ( $topics as $topic) : ?>
<?php
$doof = $topic->forum_id;
if ($doof=="1") {
?>
<p><a href="<?php topic_link(); ?>"><?php topic_title(); ?></a><?php topic_page_links(); ?></p>
<?php } ?>
<?php endforeach; endif; ?>