Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #387324

    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!

    #387792

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.