We hope you enjoy your visit.

You're currently viewing our forum as a guest. This means you are limited to certain areas of the board and there are some features you can't use. If you join our community, you'll be able to access member-only sections, and use many member-only features such as customizing your profile, sending personal messages, and voting in polls. Registration is simple, fast, and completely free.


Join our community!


If you're already a member please log in to your account to access all of our features:

Username:   Password:
Add Reply
Advanced Award System v1.0; with tooltips
Topic Started: Nov 7 2009, 01:20 PM (46,978 Views)
Viral
Member Avatar
Viral
[ *  *  *  *  *  * ]
What it Does: Adds awards to user's mini profiles (only in posts at the moment). When hovering over these awards, it will show a description of it and the date received in a tooltip.

I have tested this to work in the following browsers:
  • Google Chrome 2.0.172.43
  • Firefox 3.5.2
  • Internet Explorer 8.0.6001.18783 (lol)
  • Opera 9.26
  • Opera10.0
  • Safari 4.0


It works 100% in all of those browsers. Hopefully it works just as well in others, but I don't have them ready to test.

Preview: http://s1.zetaboards.com/zbAIO2/topic/2231766/1/

The Code:

Add the following Below The Board
Code:
 
<script type="text/javascript">
//<![CDATA[
var t_award = {
name : "Awards",
thumbnail : [20,20],
closeFunction : "fade",
users : [
[user id,"award name","award image","award description","award date"],
[user id,"award name","award image","award description","award date"],
[user id,"award name","award image","award description","award date"],
[user id,"award name","award image","award description","award date"]
]
}
//]]>
</script>
<script type="text/javascript" src="http://z3.ifrm.com/142/141/0/p239659/tooltipawards.js"></script>


That's the base of the script, but it needs to be edited when adding awards and such.

name : "Awards", - You can change "Awards" to whatever you want to call it, be it achievements, or whatever. Just make sure you wrap it with speech marks " and have a comma after the last speech mark.

thumbnail : [20,20], - These are the dimensions of the thumbnail versions of the award images. Change the first 20 to the width, and the second 20 the height.

closeFunction : "remove", - This is the animation used when you move your mouse out of the image (when hiding the information box). You can set this to either: "remove" (no animation) or "fade" (fades out) or "slide" (slides upwards). Once again, it must be wrapped with speech marks, and there must be a comma after the last speech mark.

Each award is set out like:
[user id,"award name","award image","award description","award date"],

You can add as many as you want after each other, which will automatically award someone. If you remove the award from the script, it will be removed from all of their posts as well. Note how each part is wrapped with speech marks besides the user id. User ID is the number you see in the URL when viewing their profile. For example, my account here has a user id of 230248. After each award, their should be a comma (after the closing square bracket ]). However, you do not put a comma at the end of the last award. Think of it as a list, use commas after each one, but not the last.

When filling out the information, put a backslash in front of all apostrophes and speech marks (besides the ones wrapping it). So, ' changes to \' and " changes to \". Last but not least, you cannot use line breaks (hitting the enter/ return key). If you need a line break, use \n instead, and that will be replaced by a real line break on the forum.

I realise that's a lot to take in, so if anything goes wrong, just post here :) .
Edited by slayer766, Nov 22 2009, 12:01 PM.
Offline Profile Quote Post Goto Top
 
Replies:
Lout-ZNR
Member Avatar
He came, he saw...
[ *  *  * ]
Save the file again but remove the <script type="text/javascript"> from the very top and the </script> from the very bottom.
Then add the code to the below the board section like you did before making sure you also have this underneath it -
Code:
 
<script type="text/javascript" src="http://z3.ifrm.com/142/141/0/p239659/tooltipawards.js"></script>
Offline Profile Quote Post Goto Top
 
MathanMV
Member
[ *  * ]
Heroic Drinker
May 15 2010, 06:40 AM
Save the file again but remove the <script type="text/javascript"> from the very top and the </script> from the very bottom.
Then add the code to the below the board section like you did before making sure you also have this underneath it -
Code:
 
<script type="text/javascript" src="http://z3.ifrm.com/142/141/0/p239659/tooltipawards.js"></script>
thanks mate, it all works now :)
Offline Profile Quote Post Goto Top
 
Deleted User
Deleted User

This code simply doesn't' work on either my main forum or my test forum

:(

http://stretfordenders.net/index/

I'm looking for assistance to get it working :)
Quote Post Goto Top
 
Lout-ZNR
Member Avatar
He came, he saw...
[ *  *  * ]
Try posting the exact code you have installed, even if it's on your test forum (with a link) because I took a look at your main forum earlier and it wasn't on there.
Edited by Lout-ZNR, May 16 2010, 04:07 PM.
Offline Profile Quote Post Goto Top
 
Deleted User
Deleted User

Code:
 
<script type="text/javascript">
//<![CDATA[
var t_award = {
name : "Awards",
thumbnail : [20,20],
closeFunction : "fade",
users : [
[1233299,"TEST","http://i949.photobucket.com/albums/ad335/Puppet_of_fate/Contest1.png","TEST","2010"],
[user id,"award name","award image","award description","award date"],
[user id,"award name","award image","award description","award date"],
[user id,"award name","award image","award description","award date"]
]
}
//]]>
</script>
<script type="text/javascript" src="http://z3.ifrm.com/142/141/0/p239659/tooltipawards.js"></script>


Image is just a test one I got from a code someone else had posted on this thread.

Link to the forum - http://s1.zetaboards.com/StretfordEnders_Test/index/
Quote Post Goto Top
 
Lout-ZNR
Member Avatar
He came, he saw...
[ *  *  * ]
Stretford Enders
May 16 2010, 05:51 PM
Code:
 
<script type="text/javascript">
//<![CDATA[
var t_award = {
name : "Awards",
thumbnail : [20,20],
closeFunction : "fade",
users : [
[1233299,"TEST","http://i949.photobucket.com/albums/ad335/Puppet_of_fate/Contest1.png","TEST","2010"]
]
}
//]]>
</script>
<script type="text/javascript" src="http://z3.ifrm.com/142/141/0/p239659/tooltipawards.js"></script>
put that in, the dummy lines of this -
Code:
 
[user id,"award name","award image","award description","award date"],

were messing it up.

The code I've just shown gives this (I changed the user ID to the one on my test board) -

Posted Image
Offline Profile Quote Post Goto Top
 
Deleted User
Deleted User

Fantastic stuff. Very helpful mate. Appreciate it :)
Quote Post Goto Top
 
Da King
Member Avatar
Mr. Man
[ *  * ]
Thanks for this. I just installed it and it works. I'm about to add new awards.
Offline Profile Quote Post Goto Top
 
gigabyte387
Member
[ * ]
where can i find user ID??

btw thanks..
great code.. hehe
Offline Profile Quote Post Goto Top
 
Da King
Member Avatar
Mr. Man
[ *  * ]
The user ID is the number at the end of the link of a user's profile.
Offline Profile Quote Post Goto Top
 
gigabyte387
Member
[ * ]
wow thx a lot
its working on me!!
Offline Profile Quote Post Goto Top
 
Akern
Member
[ * ]
Thanks so much! Your code is awesome
Offline Profile Quote Post Goto Top
 
gamer3
Member Avatar
Member
[ *  * ]
two awards are showing up for some reason?
Offline Profile Quote Post Goto Top
 
Viral
Member Avatar
Viral
[ *  *  *  *  *  * ]
You have the script in twice then.
Offline Profile Quote Post Goto Top
 
Yams
Member
[ * ]
thanx heaps... great code :D
Offline Profile Quote Post Goto Top
 
1 user reading this topic (1 Guest and 0 Anonymous)
Go to Next Page
« Previous Topic · ZetaBoards Codes & Modifications · Next Topic »
Add Reply