Tip to make it HTTPS compatible
-
In order to make the plugin HTTPS compatible you have to replace in file /wp-exclude-from-homepage/wp-exclude-from-homepage.php
line 53 the
this->plugin_url = trailingslashit( WP_PLUGIN_URL . '/' . dirname( plugin_basename( __FILE__ ) ) );
with
$this->plugin_url = trailingslashit( plugins_url() . '/' . dirname( plugin_basename( __FILE__ ) ) );
- The topic ‘Tip to make it HTTPS compatible’ is closed to new replies.