They have given me a solution, so I assume it’ll be useful to share it in case anyone else has the same issue:
Yes the problem was of jQuery as we have mentioned before because we are using $ (which is used by most of the jQuery libraries) and that plugin is using jQuery as jQuery variable. So we have done below change which will load that plugin jQuery in head, so it will not interfere with theme jQuery. Please make sure to note down this change and do it whenever you update that plugin.
In this file – /wp-content/plugins/addons-for-visual-composer/livemesh-vc-addons.php
We have changed below line of code
wp_register_script('lvca-frontend-scripts', LVCA_PLUGIN_URL . 'assets/js/lvca-frontend' . LVCA_BUNDLE_JS_SUFFIX . '.js', array(), LVCA_VERSION, true);
TO
wp_register_script('lvca-frontend-scripts', LVCA_PLUGIN_URL . 'assets/js/lvca-frontend' . LVCA_BUNDLE_JS_SUFFIX . '.js', array(), LVCA_VERSION, false);
-
This reply was modified 8 years, 5 months ago by
Mike.
-
This reply was modified 8 years, 5 months ago by
Mike.