• Resolved luminousnerd

    (@luminousnerd)


    Seems like it should be a fairly easy install; just upload, enable, and add code to your footer. However, the instructions (https://www.skyminds.net/wireless/wordpress/snowy/) are very vague on what that line of code is. It acts as if it’s obvious, so I tried the obvious option:

    <?php
    do_action(’wp_footer’) ;
    >

    to no avail. I’m definitely not good with PHP, perhaps I’m missing something obvious because of that. Help would be appreciated! Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • That bit of template code is out of date (though should still work). These days you want to use:

    <?php wp_footer(); ?>

    typically right before the closing </body> tag in your templates. With that, and the plugin’s snowy.js file in the right place (i.e. in that plugins/snowy/ directory), it *should* work as advertised.

    Thread Starter luminousnerd

    (@luminousnerd)

    Ah-hah! That did it! Thank you very much!

    open your footer.php
    then write this peace of code in <?php snowy(); ?> then safe , you will see, it works how it should. be sure that you upload those snowy files in a “snow” folder in your plugin section. and for all who are new to wp, dont forget to activate it first!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Getting ‘Snowy’ Plugin to work…’ is closed to new replies.