Hi Ernest,
We have our own jquery loaded at the head section, but since there is a duplicate jquery loading from the plugin, it causes some issue on the page.
For example: some datepickers are not working.
deregistering script like below helps remove one jQuery load from the plugin, but somehow plugin stops working (could not initiate search). Even if we match the jquery version 3.5.1 as well.
add_action('wp_enqueue_scripts', 'remove_plugin_jquery');
function remove_plugin_jquery(){
wp_deregister_script('jquery');
}
I have tried using minified scope too but error still persist.
Could you please advise?
Thanks