romerocw (@romerocw)

Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • My bad… I fixed it. I didn’t realize that we still needed Sam’s BBPress Integration plugin in WP. I installed the plugin and all is fine now. The thing that threw me for a loop was that I had no issues initially during install. When I cleared cookies last night I caused the problem. The bottom line. Using WP 2.9.1 and BBPress 1.0.2 still requires the WP BBpress integration plugin.

    _ck_ I went to the comments page for your plugin and saw where you wrote how to get the title of the topic.

    topic_title(forum_last_topic_id());

    Thank you.

    Still can’t quite figure out the other weird problem though.

    Thanks _ck_, I just downloaded it and installed it. I have a question and a comment.

    1st Q: Am I missing something simple? Is there a way to get forum_last_post_title() in addition to the link? I”d like the link title to be the post title. With your plugin I can create an href of the last post and link to it but the link text has to be the URL. I’d like the link text to be the post title.

    2nd comment: There is something weird going on inside the bb_fourm_class() loop. If I do this code the plugin works correctly giving me the last post link:

    <td class="topicTitle"> <?php forum_time(); ?> <a href="<?php forum_last_post_link(); ?>"><?php forum_last_post_link(); ?> </a> <?php forum_time(); ?>
    <br /><span class="lastPoster">by <a href=""><?php forum_last_poster(); ?></a></span>
    <span class="topicTime">at <?php topic_time('M. j, Y'); ?></span>
    </td>

    If I remove the first occurrence of <?php forum_time(); ?> and let the loop see “> first then the plugin doesn’t work correctly and the incorrect first post link is displayed. The following breaks the plugin for the 1st occurence of a link. The subforum link does work correctly.

    <td class="topicTitle"> <a href="<?php forum_last_post_link(); ?>"><?php forum_last_post_link(); ?> </a> <?php forum_time(); ?>
    <br /><span class="lastPoster">by <a href=""><?php forum_last_poster(); ?></a></span>
    <span class="topicTime">at <?php topic_time('M. j, Y'); ?></span>
    </td>

    See if you can reproduce it in one of your templates. I can reproduce it here.

Viewing 3 replies - 1 through 3 (of 3 total)