Quote:
Originally Posted by Boofo
The b-day has nothing to do with this mod. You must have included it in an if statement for the b-day by accident. 
|
I wound up doing this too when I followed the instructions in 3.5.1. The birthday phrase it said to look for wasn't there exactly, but one close to it was. It said to look for this:
Code:
<if condition="$userinfo['birthday']">
, which did not exist.
I found this instead.
Code:
<if condition="$show['birthday']">
This wound up putting it inside the If statement so that if there was additional userinfo, it showed, but if not, it did not show and just put an N/A in the field.
To fix it, I looked for this code:
Code:
<else />
<em>$vbphrase[n_a]</em>
</if>
</div>
Then put this code after it:
Code:
<!-- Begin Local Date and Time in Profile -->
<span class="fieldset">
<table>
<tr>
<td><strong>$vbphrase[bf2_local_time]</strong>:<br />$userinfo[localtime]</td>
</tr>
<tr>
<td><strong>$vbphrase[bf2_local_date]</strong>:<br />$userinfo[localdate]</td>
</tr>
</table>
</span>
<!-- End Local Date and Time in Profile -->