View Single Post
  #4  
Old 11-12-2003, 09:55 PM
  BoomBoomBap's Avatar 
BoomBoomBap BoomBoomBap is offline
 

Senior Member
  
Join Date: Nov 2002
Location: San Francisco
Posts: 184
 

Default

Fabulous mod !

I've extended this a bit to make the referrer a selectable option

add the following in /config.php after the # Defined Titles area
Code:
# # Defined Referrers # $name_referrers = array("Search Engine","Magazine Ad","Newspaper Ad","Word of Mouth","Other"); $smarty->assign("name_referrers",$name_referrers);

In main/register.tpl use the following:
Code:
<tr valign=middle> <td align=right>{$lng.lbl_referer}</td> <td></td> <td nowrap> <select name=referred> {section name=referred loop=$name_referrers} <option {if $userinfo.referred eq $name_referrers[referred]}selected{/if}>{$name_referrers[referred]}</option> {/section} </select> </td> </tr>

Also for reference, if you're having trouble seeing the original mod correctly, make sure you add lbl_referrer to the languages table
__________________
Site 1 > XCART LIVE 3.4.12

Site 2 > XCART LIVE 4.0.17
Reply With Quote