Tagged: bbpress, breadcrumbs, sidebar
Hello,
Thanks for the great theme!
How can I allow breadcrumbs and sidebar only for the forum pages?
Thanks,
Max
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));
Hey Dude,
Thanks for your answer! Works perfectly fine!
Best regards,
Max
Hi!
Great :)
Best regards,
Peter