[Plugin: Shortcode Reference] Paths to CSS and JS don't work on IIS servers (easy fix)
-
I just installed this plugin on a site that’s running — alas — on IIS, and I noticed console errors indicating that the scripts and stylesheets couldn’t load. Your code for determining the plugin paths doesn’t work on Windows machines. It was easy to fix using WP’s
plugins_url
function, though. I replaced yourwp_enqueue_script
andwp_register_style
lines in shortcode-reference.php with this:wp_enqueue_style( 'shortcode-reference-style', plugins_url('/css/shortcode-reference.css', __FILE__) ); wp_enqueue_script( 'shortcode-reference-js', plugins_url('/js/shortcode-reference.js', __FILE__) );
… and removed the plugin directory definition and
wp_enqueue_style
lines from the conf file.https://www.ads-software.com/extend/plugins/shortcode-reference/
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘[Plugin: Shortcode Reference] Paths to CSS and JS don't work on IIS servers (easy fix)’ is closed to new replies.