Quote:
Can anyone help or am I a lost cause ???
|
Do you really want an answer to that? :P LOL!
Code:
{if $config.disable_ccinfo eq "N"}
<tr valign=middle>
<td align=right>CVV2</td>
<td><font class=Star>*</font></td>
<td nowrap colspan=3>
{if #safeCCNum# eq ""}
<input type=text name=card_cvv2 size=4 maxlength=4 value="{$userinfo.card_cvv2}">
{else} <MOVE IT ABOVE THIS LINE>
{#safeCCcvv2#}
<input type=hidden name=card_cvv2 value="{#safeCCcvv2#}">
{/if}
<a target="_blank" href="http://www.jab-tech.com/oldstore/cvv.html">
<font color="#000080">CVV2
Help</font></a>
</td>
</tr>
{/if}
Try moving your link above the
ELSE statement. I would imagine it is not being displayed because it is in the
ELSE part of the
IF statement. That
ELSE is never happening because the first
IF condition is being satisfied.
Or I could be totally wrong....