Your extension “Snow Storm” does not work with mobiles, smartphones, example: iPhone 6.
Could you fix this bug?
Here is my site for your tests:
https://www.creawebrdv.eu
Thanks in advance
—————————————-
Votre extension “Snow Storm” ne fonctionne pas avec des mobiles, smartphones, exemple : iPhone 6.
Pourriez-vous corriger ce bug ?
Voici mon site pour vos tests :
https://www.creawebrdv.eu
D’avance merci
]]>Works with Edge and Firefox browsers but not Chrome.
]]>Hi
Every time I visit your demo page Chrome Crashes!!
Will
]]>When this plugin is active the Yoast SEO plugin’s widget will not open or close on any given post.
As soon as the plugin is deactivated, Yoast’s functionality returns to normal.
]]>This applies to “Snow Storm” version 1.4.2.
The plug-in’s JavaScript depends on jQuery. For that reason, it should be enqueued with the dependency specified, but in version 1.4.2 it’s not.
The result is that the JavaScript does not execute properly, if at all. Using Internet Explorer, for example, can lead to a script error dialogue.
#### Steps to reproduce:
#### Expected behaviour:
jquery.js
script to be loaded before snow-storm.js
and before the in-line script generated by views/default/head.php
is emitted.#### Actual behaviour:
jquery.js
script is not loaded.#### Impact
For many themes, this will not be an issue as they will probably use jQuery already, thereby hiding the problem. For some, however, specifically in cases where jQuery is not loaded, the plug-in will not work.
#### Suggested solution:
The JavaScript is enqueued in snow_storm_enqueue_scripts()
at line 92 onwards, snow-storm.php
:
wp_enqueue_script('snow-storm', plugins_url() . DS . 'snow-storm' . DS . 'snow-storm.js', false, '1.41');
I suggest replacing this with:
wp_enqueue_script('snow-storm', plugins_url() . '/snow-storm/snow-storm.js', array('jquery'), '1.41');
I’ve made similar changes to my copy of “Snow Storm” and it seems to work okay. It would be nice if this could be fixed in subsequent versions, thereby avoiding the need to do this.
]]>Firstly, let me say I’m aware that this has been reported before and that there’s a work-around. However, if the plug-in is upgraded or re-installed, then the work-around gets undone. Although not a show-stopper, it’s an annoyance.
There are problems when the directory separator is \
rather than /
. To my knowledge, this is only Windows platforms, but as that’s a popular platform, I think this is important.
#### Steps to reproduce:
#### Expected behaviour:
snow-storm.js
to be loaded, e.g.<script type='text/javascript' src='/wp-content/plugins/snow-storm/snow-storm.js?ver=1.41'></script>
#### Actual behaviour:
<script type='text/javascript' src='/wp-content/pluginssnow-stormsnow-storm.js?ver=1.41'></script>
#### Analysis:
File: snow-storm.php
Func: snow_storm_enqueue_scripts()
Line: 116
wp_enqueue_script('snow-storm', plugins_url() . DS . 'snow-storm' . DS . 'snow-storm.js', false, '1.41');
Due to the use of DS
i.e. DIRECTORY_SEPARATOR
, the resulting URL is:
/wp-content/plugins\snow-storm\snow-storm.js
This is causing problems later on in the processing, since the backslashes are not escaped, e.g.\\
. The result is that things like \s
just end up as s
.
#### Recommendation:
As Windows supports the use of /
as a path separator, at least those versions since command.com
was in use, then there’s no real need to use the DS
constant. It could be removed from the plug-in’s code, or at least permanently set to /
rather than DIRECTORY_SEPARATOR
.
In any case, scripts should be specified as URLs when using <script src="...">
, not file system paths, so DS
should never have been used in this particular case.
I hope this is helpful.
]]>Hi,
I was trying to expand and collapse the different sections when creating a page in my WP admin section. I was unable to do so, and I started individually disabling plugins one by one until the problem stopped. I isolated the problem, and confirmed that Snow Storm is causing the issue. This is a big problem, and I’m reporting it in hopes that the developer will fix it.
Thanks,
Christian
Great plugin! Looking for a way to limit snowflakes to a specific container. Would you consider adding a feature for “target container” and “z-index” for the snowflakes? This way we could place snowflakes e.g. on background only or in a smaller container with say a slideshow. Haven’t been able to achieve this by editing the CSS file only – unless you have some pointers on how to make this happen? Thanks!!
]]>Can anyone help? I have installed and activated it. Do I need to do anything else? It is on localhost. I noticed someone else also had this issue on localhost but fixed it without posting the fix. ??
]]>Hi
Is it possible to activate the plugin only on the homepage ? I can’t search it in search box “Show on Posts/Pages”.
Regards,
]]>Hi. I just noticed that when I’m switching tabs on my browser and come back to the website with this plugin – the snowing speed increases. But On Safari it never gets slow again – it just keeps increasing and increasing..On Firefox its seems to have at least 9 tab switches before it comes back to normal. I dont think thats good limit. Is this option made on purpose or is this a bug?
Please fix it for safari ?? Not sure about other broswers.
Hi,
I have had the plugin installed last year ! the day I uninstalled it once , though that is deleted plugin , is now running since yesterday a snowstorm on my side ! Where nests the plugin still in files or database so that I can delete these files then .
” I have a snowstorm, though I have deleted the plugin ?! “
Thank you for your help
All the best
]]>i have the plugin in my website (is not local) and is not working just dont show the snow ??
]]>I can’t make my snow fall in front of the banner on my website (which is configured by #branding)
If I reduce the z-index of #branding below zero it affects many other functions (for example, drop down menus become transparent and don’t work)
The obvious solution would seem to be to increase the z-index of the actual snow flakes. I see that they are just styled text but can’t work out how to alter any of the styling.
Thanks
does not appear to work when activated on my site. Using localhost copy should that make a difference?
]]>I just upgraded my website to 4.0 along with the latest version of the plugin.
After upgrading, the Animation Interval doesn’t seem to have any affect. Previously I have the flakes falling very slowly and would like to get it set to that again.
Setting it to 25 or 50 seems to have the same affect. How high can I go with the setting? I’ve tried 100 or 200 with no effect as well.
snowarama.org
I love this plugin btw. Thanks.
]]>Hey!
This is a great plugin, but I’d like to know if it was possible to make the snow fall only on the background on my site, that is to say only on the left and on the right, but not on the middle.
I think there’s just a little css trick to do, but I can’t find it.
Thanks in advance.
]]>On windows vista, this plugin does not work since the JS path generated in the snow_storm() function is not correct – missing directory separator slash in the path.
This is because the DIRECTORY_SEPARATOR PHP constant returns null/empty on Windows Vista with XAMPP (PHP 5.4). I fixed by using ‘/’ instead of DIRECTORY_SEPARATOR.
In snow-storm.php, replace this line at the top –
if (!defined('DS')) { define('DS', DIRECTORY_SEPARATOR); }
with
if (!defined('DS')) { define('DS', '/'); }
This will work on Windows as well as Linux.
]]>Any thoughts on making it work in IE9 native mode? It works in IE compatability mode, Chrome, and FF…
]]>Good day,
Thank you for using the WordPress Snow Storm plugin or for your interest in using it.
We do check these forums but we try to centralise our support since we have several plugins that we need to answer questions for and offer support for.
Please use our support forums for quicker and more responsive help with the WordPress Snow Storm plugin. Here are our community forums: https://tribulant.com/forums/
All the best,
Antonie Potgieter