Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #279076

    Hello
    My futur site has got transparent header and no sidebar everywhere in all pages.
    So I would like the other pages looks like the smahe way, ie: the search page
    I ask you for the search page but I need it for archives pages too.
    Thanks

    #279963

    Hi pako69!

    Try this code:

    
    add_action('wp_head','avia_remove_search_sidebar', 10);
    
    function avia_remove_search_sidebar()
    {
    			if(!is_archive() && !is_search()) return;
    			global $avia_config;
    			$result = "fullsize";
    			$avia_config['layout']['current'] = $avia_config['layout'][$result];
    			$avia_config['layout']['current']['main'] = $result;
    }
    

    It should remove the sidebar from all archive & search pages.

    Regards,
    Peter

    #280031

    Yeeah, that’s why I love Enfold so much :)
    thanks

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Search page with transparent header and no sidebar’ is closed to new replies.