The user has wrote more than 100 posts and comments
Passioned user
You have participated in 50+ different topics, a true fan!
Forum Writer
You have opened more than 20 topics on the forum
Community veteran
You belong to this community since its ancient time
Posts : 153 Points : 77946
thank u very much! :) the avatar works good now. Is it possible to add other variables like "posts" and PM's like this ?
i think FMCodes is using the forumotion toolbar for this menu, i just want to know if its possible to add these things w/o the toolbar. that was my first question at this topic tho.
You belong to this community since its ancient time
Passioned user
You have participated in 50+ different topics, a true fan!
Active poster
The user has wrote more than 50 posts
Posts : 58 Points : 91937
Yes is posible. JS:
Code:
$(function() { var a = _userdata.user_posts,b=_userdata.user_nb_privmsg,c=_userdata.point_reputation; // A = User Post on the forums, B = User PM, C = User like given. d = document.getElementById('user_infos'); // Get of elements d.innerHTML = 'Posts : <b>'+ a +'</b><br />PMs : <b>'+ b +'</b><br />Reputation : <b>'+ c +'</b>'; });