• Resolved gibaltodesigns

    (@gibaltodesigns)


    Hi, It does not work in the mobile version of my theme allegro, I have activated perfect integration, I have also tried to replace in searchform.php the code of the form by

    <?php echo do_shortcode( “[aws_search_form]” ); ?>

    but it still doesn’t work.

    I have tried several other things from the forum but I can’t get anything.

    Thanks a lot!

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author ILLID

    (@mihail-barinov)

    Hi,

    Looks like I found the solution for you. Please use following code snippet

    add_filter( 'aws_js_seamless_selectors', 'aws_js_seamless_selectors' );
    function aws_js_seamless_selectors( $selectors ) {
        $selectors[] = '.topbar-mobile .search-popup form';
        return $selectors;
    }

    You need to add it somewhere outside the plugins folder. For example, inside functions.php file of your theme or use some plugin for adding code snippets.

    Regards

    Thread Starter gibaltodesigns

    (@gibaltodesigns)

    thank you, you are great!
    100% appealing

    Plugin Author ILLID

    (@mihail-barinov)

    Glad to help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Don′t work in allegro responsive theme’ is closed to new replies.