Use of WP_PLUGIN_URL causes layout to break w/ SSL
-
Line 73 in social-articles.php:
define(‘SA_BASE_URL’, WP_PLUGIN_URL . ‘/’ . SA_DIR_NAME);
Should be something like:
define(‘SA_BASE_URL’, plugins_url() . ‘/’ . SA_DIR_NAME);
Because WP_PLUGIN_URL doesn’t account for https, some assets are blocked when the page is served over SSL.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Use of WP_PLUGIN_URL causes layout to break w/ SSL’ is closed to new replies.