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
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
Yeeah, that’s why I love Enfold so much :)
thanks