Re: Where is the word 'sticky' hidden?
re: “You’re Not Logged In…”
I just slapped that in manually on front-page.php between an if/then about whether you’re logged in or not. As follows:
<tr>
<td class="topper-col" colspan="5">
<?php if ( bb_is_user_logged_in() ) : ?>
<h3 class="new-post"><?php bb_new_topic_link('Start a new conversation »'); ?></h3>
<?php else: ?>
<h3 class="not-logged">» You're Not Logged In. Please Login or <a href="http://www.triplepundit.com/forum/register.php"><u>Register</u></a> «</a></h3>
<?php endif; // bb_is_user_not_logged_in() ?>
</td>
</tr>