Howdy…
We need to keep the sidebars on for some pages and all posts. Is it possible to remove the sidebars from attachment pages only?
Thanks!
Hey interage!
Thank you for using our theme.
Try the following – put in functions.php at the bottom:
add_filter('avf_sidebar_position', 'my_avf_sidebar_position', 10, 1);
function my_avf_sidebar_position($sidebar)
{
if( is_attachment() )
{
$sidebar = '';
}
return $sidebar;
}
If it does not work, can you give us a link to your page and an admin access pls?
Best regards,
Günter