Forums

Join
bbPress Support ForumsTroubleshootingview.php template doesn't have an rss feed?

Info

Tags

view.php template doesn't have an rss feed?

  1. This is probably one for TRAC just but I just wanted to check that I am not missing something...

    You can't get an rss feed for a view page, can you?

    This should be fairly easy to implement since just an array of topics is dumped to the page, just route it somehow to the rss.php upon the proper url ie. /forums/rss/view/no-replies

  2. Views don't have proper titles either apparently, here's plugin to fix that.

    function bb_get_view_title($title) {
    if (is_view()) {$title =  get_view_name(). ' « ' . bb_get_option( 'name' ); }
    return $title;
    }
    add_filter( 'bb_get_title', 'bb_get_view_title' );
  3. You must log in to post.