I got this fixed now, I was not doing an eval to fetch the template.
However now I am having one issue:
HTML Code:
<phrase 1="$pmbox[lastvisitdate]" 2="$pmbox[lastvisittime]">$vbphrase[last_visited_x_at_y]</phrase>
Comes out as:
You last visited: at
Obviously pmbox is not available for custom templates so I tried :
HTML Code:
<phrase 1="$vbulletin->userinfo[lastvisitdate]" 2="$vbulletin->userinfo[lastvisittime]">$vbphrase[last_visited_x_at_y]</phrase>
Which came out as:
You last visited: Array[lastvisitdate] at Array[lastvisittime]
Any ideas on what variable to use?