[ad_1]
Plugin Contributor
ghoul
(@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
Hi Sachyya
Thank you so much! That works. Sorry for the duplicate thread.
