Hi,
After some research I figured out that adding this code to the theme functions.php file is fixing the issue:
if (!is_admin()) {
wp_deregister_script('jquery');
wp_register_script('jquery', ("https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"), false, '1.11.3');
wp_enqueue_script('jquery');
}
Hope that will help other people with similar problem.
Thank you for the amazing plugin and all the work that you are doing! Keep it up guys!
Hi,
Thank you for your prompt reply!
Yes, you are right – I think the theme is causing the issue because it worked fine with the default 2016 theme.
I will try playing with it. Thank you once again!