Create A Forum - Support Forums

Support => Create a Forum Codes and Support => Topic started by: aIURbliS on March 03, 2012, 04:42:22 pm

Title: [Code] Multi-Code
Post by: aIURbliS on March 03, 2012, 04:42:22 pm

!!!THIS CODE IS NO LONGER AVAILABLE!!!





I've combined most of the codes I've released into a single file so everyone can have a cleaner Headers and Footers. This code has the following implemented already:
Hide Tabs
Awards
Alternative News
HTML above tabs
Money Code(Agent Moose)



Instructions:
1) Go to your Headers & Footers  http://FORUM.createaforum.com/index.php?action=admin;area=style;sa=headers; (http://forum.createaforum.com/index.php?action=admin;area=style;sa=headers;)
2) This code utilizes jQuery, please use the latest version found in this thread: http://support.createaforum.com/5/jquery-v1-8-update/ (http://support.createaforum.com/5/jquery-v1-8-update/)
3) Copy and paste this code in your Headers:
Code: [Select]
<script src="http://xboi209.comlu.com/caf.js"></script>
4) Depending on which code you want to enable, you must add different codes to your Footers!
For Hide Tabs:
Code: [Select]
<script>
var tabs = "TEXT";
</script>
For Money:
Code: [Select]
<script>
var Money = ['NAME', 'SIGN', 'AMOUNT'];
</script>
For Awards:
Code: [Select]
<script>
var Awards=['ID','IMAGE URL','NAME'];
</script>
For Alternative News:
Code: [Select]
<script>
var altnews = "TEXT";
</script>
For HTML above tabs:
Code: [Select]
<script>
var user = "TEXT";
</script>
If you're going to use more than one of them, you can combine them inside the same <script></script> tags like this:
Code: [Select]
<script type="text/javascript">
var tabs = "TEXT";
var altnews = "TEXT";
var user = "TEXT";
var Awards=['ID','IMAGE URL','NAME'];
var Money = ['NAME', 'SIGN', 'AMOUNT'];
</script>
Title: Re: [Code] Multi-Code
Post by: aIURbliS on March 14, 2012, 04:53:55 pm
Updated, now includes a Money Code created by Agent Moose and optimized coding for quicker loading speeds.