Hi – How can I modify the sidebar on *only* bbpress forum pages?
How can I removed the sidebar on *only* bbpress forum pages?
Hi!
Try following – open up wp-contentthemesenfoldforum.php and replace
global $avia_config;
with
global $avia_config;
$avia_config['layout']['current'] = $avia_config['layout']['fullsize'];
$avia_config['layout']['current']['main'] = 'fullsize';
Regards,
Peter
Perfect! You are the man Peter!