Fix for use with secure forms
-
Currently, when using the progress bar on a secure form, the plugin attempts to load the components via http instead of https. The function “plugins_url()” should be used instead of the constant WP_PLUGIN_URL.
Please replace in progressbar.php:
/*Seting Up*/ define('CUSTOM_PROGRESS_PLUGIN_PATH', WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/' );with
/*Setting Up*/ define('CUSTOM_PROGRESS_PLUGIN_PATH', plugins_url() . '/' . plugin_basename( dirname(__FILE__) ) . '/' );
The topic ‘Fix for use with secure forms’ is closed to new replies.