Must be having one of those days
I need to add a text variable (as highlighted) to the shipping methods template at the checkout on a client's site.
Code:
{* $Id: shipping_methods.tpl,v 1.7.2.11 2007/09/26 10:35:04 ferz Exp $ *}
<table cellpadding="5" cellspacing="5" width="100%">
<tr>
<td></td>
{$lng.txt_delnote}
</tr>
<tr>
<td valign="top" width="30%">
{include file="customer/main/subheader.tpl" title=$lng.lbl_shipping_address}
{if $userinfo}
{if $userinfo.default_fields.s_address}{$userinfo.s_address}<br />{/if}
{if $userinfo.default_fields.s_address_2 and $userinfo.s_address_2}
{$userinfo.s_address_2}<br />
{/if}
{if $userinfo.default_fields.s_city}{$userinfo.s_city}<br />{/if}
{if $userinfo.default_fields.s_county and $config.General.use_counties eq "Y" and $userinfo.s_county}{$userinfo.s_county}<br />{/if}
{if $userinfo.default_fields.s_state}{$userinfo.s_statename}<br />{/if}
{if $userinfo.default_fields.s_country}{$userinfo.s_countryname}<br />{/if}
{if $userinfo.default_fields.s_zipcode}{$userinfo.s_zipcode}{/if}
{else}
No data
{/if}
{if $login ne ""}
<br /><br />
{include file="buttons/modify.tpl" href="register.php?mode=update&action=cart"}
{/if}</td>
<td valign="top" width="70%">
{include file="customer/main/subheader.tpl" title=$lng.lbl_delivery}
I've created the txt file but it never shows. What blatantly obvious thing am I missing?
Thanks