-----------------------------------------------------------------
SERVICES | HACKS | STYLES | VIDEO GUIDES | PROFESSIONAL SUPPORT
-----------------------------------------------------------------
What does this hack do?
This hack allows you to add seasonal effects to your forumhome/entire forum to suit the time of year. The hack currently has:
Snow pixels
Snow Large Flake
Snow Small Flake
Bats
Ghosts
Witches
Fireworks Pixel
Fireworks Pixel 2
Fireworks Animation
Hearts
Heart Hug New
Uncle Sam
Easter Basket
Green Clover
Feel free to ask for more seasonal images and I will update.
To the best of my knowledge these all work on both IE + Firefox as long as java is enabled.
Planned New Features
none
Hack Installation
Template Edits: 2
Products: 1
Credits:
Matt Hutchings (TrueDeath) - Creator
blackpheonix - Use of images
Support:
Support can be given in this thread
Don't forget to click INSTALL
If you like this creation and wish to support further creations feel free to donate to: truedeath@gmail.com
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
Before making the template edits, do theese:
1) AdminCP -> User Profile Fields -> Add New User Profile Field
2) Choose "Single Selection Radio Buttons"
3) Fill in all required fields and insert two values in the Options Box: (seperated with a return) YES
NO
4) Set "Default" to YES
5) Hit "Save" and memorize the name of your field, in my case it's "field8".
6) Now, instead of adding
Code:
<!-- Start vBGuides Season -->
<if condition="$vboptions[guidesvbs_onoff] == 1">
<if condition="$vboptions[guidesvbs_area] == 0">
<script type="text/javascript" src="season/$vboptions[guidesvbs_type].js"></script>
</if></if>
<!-- End vBGuides Season -->
at the top of the header, add this:
Code:
<!-- Start vBGuides Season -->
<if condition="$bbuserinfo['fieldX']=='YES'">
<if condition="$vboptions[guidesvbs_onoff] == 1">
<if condition="$vboptions[guidesvbs_area] == 0">
<script type="text/javascript" src="season/$vboptions[guidesvbs_type].js"></script>
</if></if>
</if>
<!-- End vBGuides Season -->
7)Also, instead of adding
Code:
<!-- Start vBGuides Season -->
<if condition="$vboptions[guidesvbs_onoff] == 1">
<if condition="$vboptions[guidesvbs_area] == 1">
<script type="text/javascript" src="season/$vboptions[guidesvbs_type].js"></script>
</if></if>
<!-- End vBGuides Season -->
in forumhome, add this:
Code:
<!-- Start vBGuides Season -->
<if condition="$bbuserinfo['fieldX']=='YES'">
<if condition="$vboptions[guidesvbs_onoff] == 1">
<if condition="$vboptions[guidesvbs_area] == 1">
<script type="text/javascript" src="season/$vboptions[guidesvbs_type].js"></script>
</if></if>
</if>
<!-- End vBGuides Season -->
You should replace the fieldX to the one specified on step 5
Known bug: If i set from acp the default to YES, it does not show the snowflakes, but my users, must set it to yes from user cp, and save, to see them. Any ideas to make it working for all users, without having to enable it for the first time?
Of course
Known bug: If i set from acp the default to YES, it does not show the snowflakes, but my users, must set it to yes from user cp, and save, to see them. Any ideas to make it working for all users, without having to enable it for the first time?
You could always run a mysql query to update the field to yes for every user rather than it being empty.