• Resolved Kimberly

    (@amiga500)


    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)
  • Anonymous User 13656824

    (@anonymized-13656824)

    Hi Kimberly,

    Thanks for this. I wasn’t aware of this issue but I’ve updated the plugin now.

    Thanks,

    Simon

Viewing 1 replies (of 1 total)
  • The topic ‘Won’t work with Minify Plugins — Here’s a Fix’ is closed to new replies.