View Single Post
  #11  
Old 05-19-2004, 05:42 PM
  thundernugs's Avatar 
thundernugs thundernugs is offline
 

Senior Member
  
Join Date: May 2003
Location: Bend, OR
Posts: 117
 

Default

hmmmm, the modify profile link that works points to:

Code:
http://digiez.com/store/customer/register.php?mode=update&action=cart&paymentid=1

the one that doesn't work points to:

Code:
http://digiez.com/store/customer/register.php?mode=update

would that make a difference?


here is my register_biling_info.tpl which has the input form not working

Code:
{* $Id: register_billing_address.tpl,v 1.1.2.1 2004/04/09 07:07:28 svowl Exp $ *} <table> <tr valign=middle> <td height=20 colspan=2>{$lng.lbl_billing_addresscc} <hr size=1 noshade></td> </tr> {if $action eq "cart"}<INPUT type=hidden name="action" value="cart"> <INPUT type=hidden name="paymentid" value="{$paymentid}"> {*<tr valign=middle><td align=right>{$lng.lbl_title}</td><td nowrap><font class=Star>*</font> <select name=b_title>{section name=title loop=$name_titles}<option {if $userinfo.b_title eq $name_titles[title]}selected{/if}>{$name_titles[title]}</option>{/section}</select></td></tr>*} <tr valign=middle> <td align=right>{$lng.lbl_first_name}</td> <td nowrap> <font class=Star>*</font> <input type=text name=b_firstname size=32 maxlength=32 value="{$userinfo.b_firstname}"> {if $reg_error ne "" and $userinfo.b_firstname eq ""} <font class=Star>&lt;&lt;</font>{/if}</td> </tr> <tr valign=middle> <td align=right>{$lng.lbl_last_name}</td> <td nowrap><font class=Star>*</font> <input type=text name=b_lastname size=32 maxlength=32 value="{$userinfo.b_lastname}"> {if $reg_error ne "" and $userinfo.b_lastname eq ""}<font class=Star>&lt;&lt;</font>{/if}</td> </tr> {/if} <tr valign=middle> <td align=right>{$lng.lbl_address}</td> <td nowrap> <font class=Star>*</font> <input type=text name=b_address size=32 maxlength=64 value="{$userinfo.b_address}">{if $reg_error ne "" and $userinfo.b_address eq ""}<font class=Star>&lt;&lt;</font>{/if}</td> </tr> <tr valign=middle> <td align=right>{$lng.lbl_address2}</td> <td nowrap>[img]{$ImagesDir}/spacer.gif[/img]<input type=text name=company size=32 maxlength=32 value="{$userinfo.company}"></td> </tr> <tr valign=middle> <td align=right>{$lng.lbl_city}</td> <td nowrap><font class=Star>*</font> <input type=text name=b_city size=32 maxlength=64 value="{$userinfo.b_city}">{if $reg_error ne "" and $userinfo.b_city eq ""}<font class=Star>&lt;&lt;</font>{/if}</td> </tr> <tr valign=middle> <td align=right>{$lng.lbl_state}</td> <td nowrap>{if $states ne ""}<font class=Star>*</font>{/if} {include file="main/states.tpl" states=$states name="b_state" default=$userinfo.b_state default_country=$userinfo.b_country}</td> </tr> <tr valign=middle> <td align=right>{$lng.lbl_country}</td> <td nowrap><font class=Star>*</font> <select name=b_country onChange="check_zip_code()">{section name=country_idx loop=$countries}<option value={$countries[country_idx].country_code} {if $userinfo.b_country eq $countries[country_idx].country_code}selected{elseif $countries[country_idx].country_code eq $config.General.default_country and $userinfo.b_country eq ""}selected{/if}>{$countries[country_idx].country}</option>{/section}</select></td> </tr> <tr valign=middle> <td align=right>{$lng.lbl_zip_code}</td> <td nowrap><font class=Star>*</font> <input type=text name=b_zipcode size=32 maxlength=32 value="{$userinfo.b_zipcode}" onChange="check_zip_code()" >{if $reg_error ne "" and $userinfo.b_zipcode eq ""}<font class=Star>&lt;&lt;</font>{/if}</td> </tr> </table>
__________________
X-Cart Gold 4.0.17 & 4.0.18
Linux Server
Hands-On Hosting
http://www.CoreCases.com - Ipod Cases
http://www.InnovativeOutlet.com - Pet Plants and other cool stuff you need
Reply With Quote