Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #167635

    1. How can I have the breadcrumb bar show up *only* on forum pages
    2. How can I change the font color of text used the the bbpress edit box and for posts?
    3. How can I expand the width of the main body area of the forum and reduce the width of the forum side bar (only want these changes to apply to forum pages)

    Thanks!

    #168028

    Hi stunna42!

    1) In functions-enfold.php replace

    
    if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
    

    with

    
    if($breadcrumb && is_bbpress()) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
    

    2) Use following css code:

    
    #top .main_color .bbp-body p{
    color: #333;
    }
    
    #bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content {
    color: #333;
    }
    

    The first rule will change the text color of the posts and the second rule will change the editor text color.

    3) In functions.php search for

    
    $avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    $avia_config['layout']['sidebar_left'] 	= array('content' => 'nine', 		 'sidebar' => 'three alpha' ,'meta' => 'two alpha', 'entry' => 'nine');
    $avia_config['layout']['sidebar_right'] = array('content' => 'nine alpha',   'sidebar' => 'three alpha', 'meta' => 'two alpha', 'entry' => 'nine alpha');
    

    and replace it with

    
    $avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    $avia_config['layout']['sidebar_left'] 	= array('content' => 'nine', 		 'sidebar' => 'three alpha' ,'meta' => 'two alpha', 'entry' => 'nine');
    $avia_config['layout']['sidebar_right'] = array('content' => 'nine alpha',   'sidebar' => 'three alpha', 'meta' => 'two alpha', 'entry' => 'nine alpha');
    
    if(is_bbpress())
    {
    $avia_config['layout']['sidebar_right'] = array('content' => 'ten alpha',   'sidebar' => 'two alpha', 'meta' => 'two alpha', 'entry' => 'ten alpha');
    }
    

    Now the sidebar uses two units of the 12 units grid (instead of 3) and the content will use 10 units instead of 9.

    Regards,
    Peter

    #168501

    Hi Dude/Peter! My apologies…I’m almost certainly doing something wrong here. I tried all of the suggested changes above and none of them seemed to have any impact. I cleared my browser cache…may I need to do something else?

    Thanks again!

    #168788

    Note: The only difference changes 1 & 3 appear to make is to force the logo to shrink (which is not intended)

    #169207

    Hi!

    Maybe the is_bbpress() conditional doesn’t work in your case. You can try the conditionals from here: http://bbpress.org/forums/topic/bbpress-2-0-conditional-tags/

    i.e. replace is_bbpress() with (is_post_type_archive(‘forum’) || is_singular(array( ‘forum’, ‘topic’, ‘reply’)))

    Best regards,
    Peter

    #170219

    Hi Dude – I’m not having any luck here and am having some other BBpress issues. Is there any way to pay for premium support and have someone go in and help with these and other fixes?

    #170301

    Hello!

    You can hire a freelance here.

    Cheers!
    Josue

    #170637

    Are there any freelancers that you recommend for this theme?

    #170638

    Hello!

    You can look for freelancers specialized in Themeforest theme modification:
    http://www.microlancer.com/search?utf8=%E2%9C%93&search%5Bquery%5D=themeforest

    Best regards,
    Josue

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘3 bbpress questions’ is closed to new replies.