Hi
how to not display right sidebar on the results research page?
Regards
can you try this in child-theme functions.php:
function avia_change_layout_for_searchresults($layout, $post_id) {
if( is_search() ) {
$layout['current'] = $layout['fullsize'];
$layout['current']['main'] = 'fullsize';
}
return $layout;
}
add_filter('avia_layout_filter', 'avia_change_layout_for_searchresults', 10, 2);
Hi,
Thanks for contacting us!
Please refer to @guenni007’s post above. If you are not using a child theme, please see – https://kriesi.at/documentation/enfold/child-theme/ :)
@guenni007 thanks for your help as always! :)
Best regards,
Yigit
Thk for answer.
I’m not using child theme and i don’t want to.
Can i add this snippet in my snippet plugin?
What if you just give it a try? – will there be a self-destructing countdown then? ;) :lol
I don’t know how your snippet plugin works – but if not – then there is usually the option to remove the entry again.