issue with https
-
Hello,
There is an issue with https websites, the assets are loaded using http:// not https://. I tracked the code, and found the function responsible on this:
wr-megamenu/includes/init/assets.phpAccording to this support topic I changed:
$base_url = WP_PLUGIN_URL . “/{$plugin_name}”;
To:
$base_url = plugins_url() . “/{$plugin_name}”;This will respect the uri scheme, and load assets accordingly.
Hope you guys include this in the next update.
thank you.
The topic ‘issue with https’ is closed to new replies.