Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Entries coming up with no content

Thats what I dont get, I have the loop in there.

Yes, i attempted the deep integration but it doesn’t seem to have worked, i’ve given up.

This is what the topic.php template looks like, fron that topic_tags() downward.

<!-- <?php topic_tags(); ?> -->

<div style="clear:both;"></div>
</div>
<?php do_action('under_title'); ?>
<?php if ($posts) : ?>
<div class="nav">
<?php topic_pages(); ?>
</div>
<div id="ajax-response"></div>
<ol id="thread" class="list:post">

<?php foreach ($posts as $bb_post) : $del_class = post_del_class(); ?>
<li id="post-<?php post_id(); ?>"<?php alt_class('post', $del_class); ?>>
<?php bb_post_template(); ?>
</li>
<?php endforeach; ?>

</ol>
<div class="clearit"><br style=" clear: both;" /></div>
<p class="rss-link"><a href="<?php topic_rss_link(); ?>" class="rss-link"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr> feed for this topic') ?></a>

<div class="nav">
<?php topic_pages(); ?>
</div>
<?php endif; ?>
<?php if ( topic_is_open( $bb_post->topic_id ) ) : ?>
<?php post_form(); ?>
<?php else : ?>
<h2><?php _e('Topic Closed') ?></h2>
<?php _e('This topic has been closed to new replies.') ?>

<?php endif; ?>
<?php if ( bb_current_user_can( 'delete_topic', get_topic_id() ) || bb_current_user_can( 'close_topic', get_topic_id() ) || bb_current_user_can( 'stick_topic', get_topic_id() ) || bb_current_user_can( 'move_topic', get_topic_id() ) ) : ?>

<div class="admin">
<?php bb_topic_admin(); ?>
</div>

<?php endif; ?>
<?php bb_get_footer(); ?>

Skip to toolbar