Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Remove Forum Dashes: —

It’s in here bb-includes/functions.bb-template.php (line 680):

function forum_description( $args = null ) {
if ( is_numeric($args) )
$args = array( 'id' => $args );
elseif ( $args && is_string($args) && false === strpos($args, '=') )
$args = array( 'before' => $args );
$defaults = array( 'id' => 0, 'before' => ' – ', 'after' => '' );
$args = wp_parse_args( $args, $defaults );

if ( $desc = apply_filters( 'forum_description', get_forum_description( $args['id'] ), $args['id'], $args ) )
echo $args['before'] . $desc . $args['after'];
}

So you could probably whip up some function to override it.

You both have one dash, most likely, but different fonts :)

Skip to toolbar