• Resolved utopiablvd

    (@utopiablvd)


    On the header of the front page, there is a search icon on the top right. Clicking it and typing the keyword takes you to the search result page.
    I enabled seamless integration but it seems that it doesn’t replace this search function. I want to maintain the appearance but replace the search result with Advanced Woo Search. Could you help please?
    Thanks!

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

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

    (@mihail-barinov)

    Hi,

    Can you please tell me the name of your WordPress theme?

    Regards

    Thread Starter utopiablvd

    (@utopiablvd)

    It’s the Phlox Theme with Elementor. In the Phlox Theme, I am using the Shop Digital template.
    https://demo.phlox.pro/shop-digital/

    Plugin Author ILLID

    (@mihail-barinov)

    Please try to use following code snippet:

    add_filter( 'aws_js_seamless_selectors', 'aws_js_seamless_selectors' );
    function aws_js_seamless_selectors( $selectors ) {
        $selectors[] = '#site-elementor-header .aux-modern-search 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

    abelale

    (@abelale)

    Hello i have this theme

    https://luxury.qwery.ancorathemes.com/

    I want to replace the current search with your plugin without loosing template. I used the previews code but nothing works. Can you give me some instructions how to do the same.

    Thank you

    Plugin Author ILLID

    (@mihail-barinov)

    @abelale

    Hi, please try this code snippet:

    add_filter( 'aws_js_seamless_selectors', 'aws_js_seamless_selectors' );
    function aws_js_seamless_selectors( $selectors ) {
        $selectors[] = '.search_form_wrap form';
        return $selectors;
    }

    Hi
    The search icon on the top right on the header of the front page give me bad results. I enabled seamless integration but it seems that it doesn’t replace the search function. I want to maintain the appearance but replace the search result with Advanced Woo Search. Could you help please?

    I have this theme: https://okab.pixeldima.com/home-05/

    Thank you

    • This reply was modified 2 years, 11 months ago by guy18140.
    • This reply was modified 2 years, 11 months ago by guy18140.
    Plugin Author ILLID

    (@mihail-barinov)

    @guy18140

    Please use following code snippet:

    add_filter( 'aws_js_seamless_selectors', 'aws_js_seamless_selectors' );
    function aws_js_seamless_selectors( $selectors ) {
        $selectors[] = '#header .search-box 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.

    Flawless, Thanks a lot

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Replace Default Search with Advanced Woo Search in Phlox Theme’ is closed to new replies.