Not working in SSL (new issue)
-
Hi,
I saw the post from a month ago, where I changed the plugins/wordpress-popup/popoverincludes/includes/functions.php and overwrote with the code below, but I just get a blank page and my site doesn’t show anything after I update the functions.php file. My site is currently password-protected so I can’t send out a public URL. Thank you.
function set_popover_url($base) { global $popover_url; if(defined('WPMU_PLUGIN_URL') && defined('WPMU_PLUGIN_DIR') && file_exists(WPMU_PLUGIN_DIR . '/' . basename($base))) { $popover_url = trailingslashit(WPMU_PLUGIN_URL); } elseif(plugins_url() && defined('WP_PLUGIN_DIR') && file_exists(WP_PLUGIN_DIR . '/'.PO_PLUGIN_DIR.'/' . basename($base))) { $popover_url = trailingslashit(plugins_url() . '/'.PO_PLUGIN_DIR); } else { $popover_url = trailingslashit(plugins_url() . '/'.PO_PLUGIN_DIR); } }
- The topic ‘Not working in SSL (new issue)’ is closed to new replies.