Won’t work with Minify Plugins — Here’s a Fix
-
In the /wp-content/plugins/snow-flurry/js/h5ab-snow-flurry.min.js file it has the line
+i+ +o
. You are placing a “+” symbol in front of two variables. The line is adding two variables together. However, when a minify engine used by popular plugins like WP Super Cache or W3 Total Cache runs, it removes the space so it now looks like+i++o
. That is no longer two variables being added, its a syntax error.To fix this in Snow Flurry:
1. Open /wp-content/plugins/snow-flurry/js/h5ab-snow-flurry.min.js
2. Search for+i+ +o
3. Replace it with:i+o
Cheers!
Kimberly
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Won’t work with Minify Plugins — Here’s a Fix’ is closed to new replies.