Conversation
supportCurrently, 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__) ) . '/' ); https://wordpress.org/plugins/custom-progress-bar/
No comments were stored for this source.