Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1349121

    Hi
    how to not display right sidebar on the results research page?

    Regards

    #1349131

    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);
    #1349164

    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

    #1349432

    Thk for answer.
    I’m not using child theme and i don’t want to.
    Can i add this snippet in my snippet plugin?

    #1349452

    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.

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