Force SSL error with WP Native Dashboard
-
Hi there,
If you define FORCE_SSL_ADMIN, there is an error with unsecured content.
Comes from wp-native-dashboard.php line #109
Here is a solution:
Not working:
$this->plugin_url = WP_PLUGIN_URL.'/'.dirname(plugin_basename(__FILE__));Won’t work:
$this->plugin_url = get_option('wp-native-dashboard').'/wp-content/plugins/'.dirname(plugin_basename(__FILE__));Working:
$this->plugin_url = 'https://YOURDOMAIN/wp-content/plugins/'.dirname(plugin_basename(__FILE__));
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘Force SSL error with WP Native Dashboard’ is closed to new replies.