Put it before the /* stop editing */ line
As far as stickies, stickies have their own rows, so you have to repeat the same extra <td> in their section. It's just a matter of following the html, you have to pay attention to the details.
Put it before the /* stop editing */ line
As far as stickies, stickies have their own rows, so you have to repeat the same extra <td> in their section. It's just a matter of following the html, you have to pay attention to the details.
Okay added it to the file, did that help at all? Since I can't see what/where you are looking at that.
Yes I get the stickies have their own rows, but the forum.php...it didn't add a column when I added the info to the same places. Did I put it in wrong? This is forum.php:
<table id="forumlist">
<tr>
<th width="1"> </th>
<th><?php _e('Main Theme'); ?></th>
<th><?php _e('Topics'); ?></th>
<th><?php _e('Posts'); ?></th>
</tr>
and
<?php while ( bb_forum() ) : ?>
<tr<?php bb_forum_class(); ?>>
<td><?php forum_icon(); ?></td>
But it didn't add the column next to all the posts. It didn't do anything at all actually.
The bb-config.php unfortunately didn't change anything, it's another problem.
You are adding the code for the sub-forums, but you don't have any sub-forums.
I think what you are asking about is topics which is a different section at the top.
You really need to read and follow the directions.
<table id="latest">
<tr>
<th width="1"> </th>
<th><?php _e('Topic'); ?> — <?php new_topic(); ?></th>
<th><?php _e('Posts'); ?></th>
<th><?php _e('Last Poster'); ?></th>
<th><?php _e('Freshness'); ?></th>
</tr>
<?php if ( $stickies ) : foreach ( $stickies as $topic ) : ?>
<tr<?php topic_class(); ?>>
<td width="1"><?php topic_icon(); ?></td>
<td><?php bb_topic_labels(); ?> <big><a href="<?php topic_link(); ?>"><?php topic_title(); ?></a></big></td>
<td class="num"><?php topic_posts(); ?></td>
<td class="num"><?php topic_last_poster(); ?></td>
<td class="num"><a href="<?php topic_last_post_link(); ?>"><?php topic_time(); ?></a></td>
</tr>
<?php endforeach; endif; ?>
<?php if ( $topics ) : foreach ( $topics as $topic ) : ?>
<tr<?php topic_class(); ?>>
<td width="1"><?php topic_icon(); ?></td>
<td><?php bb_topic_labels(); ?> <a href="<?php topic_link(); ?>"><?php topic_title(); ?></a></td>
<td class="num"><?php topic_posts(); ?></td>
<td class="num"><?php topic_last_poster(); ?></td>
<td class="num"><a href="<?php topic_last_post_link(); ?>"><?php topic_time(); ?></a></td>
</tr>
Thanks I know im annoying about this but the readme file was hard to follow. Generally with all the other ones, it was pretty easy to understand..otherwise I wouldn't have asked. I got it off bbpress.org's plugins. You should take a look at it, for someone new to bbpress...its slightly hard to follow at first glance. But now that I see what is supposed to be added and where, it makes more sense!
Again I appreciate your help and look forward to any new plugins you may make. I understand you can't answer all questions for everyone all the time.
If you so happen to figure out the query count issue you were talking about, please let me know.
RSS feed for this topic
You must log in to post.