• Hi! As you can see from the url given, the search result page is working. However, aren’t there supposed to be some search results displayed before you actually click ‘search’?

    For example, i want to search cleanser. supposedly, there’ll be a dropdown displaying all cleanser products right? But mine not showing that ??

    Can you please help to assist me?

    https://tooedge.com/wip/geoskincare

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

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

    (@mihail-barinov)

    Hi,

    Looks like I found the problem. For some reason all data attributes from the aws-container block was removed. These attributes are needed for proper plugin work.

    Do you have any ideas why this can happen? Also please tell me how exactly you add plugin search form inside your header.

    Regards

    Thread Starter nisakamil

    (@nisakamil)

    Sorry, I am new to WordPress so i dont really understand what do you mean by data attributes from aws-container was removed.

    Also, I add the search form inside my header by checking the seamless integration option

    Plugin Author ILLID

    (@mihail-barinov)

    Ok, I understand you. So in this case the problem can be in your theme. Please tell me your theme name. Even better if you send me this theme .zip archive to [email protected] so I can test it by myself.

    Regards

    Thread Starter nisakamil

    (@nisakamil)

    I have sent you the email.

    Plugin Author ILLID

    (@mihail-barinov)

    Thanks, I receive it. Please try to use following code

    add_filter( 'aws_js_seamless_selectors', 'my_aws_js_seamless_selectors' );
    function my_aws_js_seamless_selectors( $selectors ) {
        $selectors[] = '.top-search .aws-container';
        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 nisakamil

    (@nisakamil)

    Thank you! Also, is there any way for me to remove the search text above the search box?

    Plugin Author ILLID

    (@mihail-barinov)

    Well you can try to use followinf css style

    .aws-container .aws-search-form .aws-wrapper {
        text-indent: -9999px;
    }

    Regards

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Search result works but ajax doesnt work’ is closed to new replies.