Hi, I'm using ARP3 (AutoresponsePlus) with Amember (I have the plugin). Everything is working fine...except the following: ARP3 uses the variables first_name and last_name as opposed to amember which uses name_f and name_l When a user subscribes on my site using ARP3 form, it then redirets them to amember signup.php ... but because the variables are different, they are not copied to the corresponding name_f and name_l can someone please help me here... I'm assuming I need to copy the variable in smarty or php, but have no idea... Thanks Ronnie
FYI - Answer from Support: Sure you can change this in signup.html template. <input class="required" type="text" name="name_f" value="{$smarty.request.name_f|escape}" size="15" /> <input type="text" class="required" name="name_l" value="{$smarty.request.name_l|escape}" size="15" /> change to: <input class="required" type="text" name="name_f" value="{if $smarty.request.name_f}{$smarty.request.name_f|escape}{else}{$smarty.request.first_name}{/if}" size="15" /> <input type="text" class="required" name="name_l" value="{if $smarty.request.name_l}{$smarty.request.name_l|escape}{else}{$smarty.request.last_name}{/if}" size="15" />