1

Topic: Easy mod to ADD TOTAL new messages and views to member account

Discovered a great way to give members handy stats after logging in. This is what they will see:

Welcome maxpower. You have 0 new messages!
You have had 3 members in total view your profile. See who's checking you out!


Go to the account_home.tpl and insert this below <!-- INCLUDE header.tpl --> at the top.

<br><font size=2>&nbsp;&nbsp;&nbsp;Welcome {session.username}.
<!-- IF {session.newmessages} #=="1" -->
You have 1 new message!
<!-- ELSE -->
You have {session.newmessages} new messages!
<!-- ENDIF -->
<!-- IF {member_total_visitors} #=="1" -->
<br>&nbsp;&nbsp;&nbsp;You have had 1 member in total view your profile.
<!-- ELSE -->
<br>&nbsp;&nbsp;&nbsp;You have had {member_total_visitors} members in total view your profile.
<!-- ENDIF -->
<a href="http://zone54.com.au/index.php?m=account_visitors"><font color=#ffffff><font size=2><u>See who's checking you out!</a></u></b></font></font size></li>

2

Re: Easy mod to ADD TOTAL new messages and views to member account

thumb up ...

Give the world the best you have, and the best will come to you.
Tutorials and Mods for VldPersonals   Swedish Dating on Love2u.se   VldCrowd:s Community

3

Re: Easy mod to ADD TOTAL new messages and views to member account

And if there are multiple languages, how to be?

4

Re: Easy mod to ADD TOTAL new messages and views to member account

Example:
you have this code:

<br><font size=2>&nbsp;&nbsp;&nbsp;Welcome {session.username}. 
<!-- IF {session.newmessages} #=="1" -->
You have 1 new message!

instead of words you must insert new lang strings code:
( Welcome, You have 1 new message! )

<br><font size=2>&nbsp;&nbsp;&nbsp;{lang:"custom","total_welcome"} {session.username}. 
<!-- IF {session.newmessages} #=="1" -->
{lang:"custom","total_newmessages"}

open your lang.custom.php (/includes/languages/)
now you can make new lang strings translate code.

"total_welcome" =>
"welcome",

"total_newmessages" =>
"newmessages",

translate the word welcome and newmessages.
( and you must do this for all your languages !

Last edited by gugu (2010-07-04 02:12:32)

Give the world the best you have, and the best will come to you.
Tutorials and Mods for VldPersonals   Swedish Dating on Love2u.se   VldCrowd:s Community