Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #27205

    Hello,

    Thanks for the great theme!

    How can I allow breadcrumbs and sidebar only for the forum pages?

    Thanks,

    Max

    #133163

    In the theme options (Enfold > Sidebar) select the “no sidebar” (all dropdowns). Then open up wp-contentthemesenfoldforum.php and replace

    global $avia_config;

    with

    global $avia_config;
    $avia_config['layout']['current'] = $avia_config['layout']['sidebar_right'];
    $avia_config['layout']['current']['main'] = 'sidebar_right';

    Then open up wp-contentthemesenfoldfunctions-enfold.php and replace

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

    with

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

    #133164

    Hey Dude,

    Thanks for your answer! Works perfectly fine!

    Best regards,

    Max

    #133165

    Hi!

    Great :)

    Best regards,

    Peter

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Breadcrumbs and sidebar only for bbPress forums’ is closed to new replies.