Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Sachyya

    (@sachyya-sachet)

    Hello @knowhalim ,

    We have just updated our plugin to 1.7.3 with the option to remove auto focus.

    Please update to 1.7.3 and you can remove auto focus by using the following code:

    add_filter( 'cm_typesense_search_box_settings', 'your_slug_search_box_custom_settings' );
    function your_slug_search_box_custom_settings( $settings ) {
        $settings['autofocus'] = false;
        return $settings;
    }

    Regards,

    Sachyya

    Thread Starter Knowhalim

    (@knowhalim)

    Hi Sachyya

    Thank you so much! That works. Sorry for the duplicate thread.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove the auto-focus onload’ is closed to new replies.