Hi I want to have several different signup pages ie. signup.php?group_id=1 signup.php?group_id=2 etc.... How can I restrict additional fields to just one of them? For example I have created a "company" field, how do can make this field only appear in signup.php?group_id=1 ? would really appreciate some help
Hi Oliver I have different fields displayed on the same signup page depending on the "price_group" example <tr> <td><span class="subheaders"> {if $smarty.request.price_group == 1} Address details {elseif $smarty.request.price_group == 2} Company details {/if}</span></td> <td colspan="2"> </td> </tr> I hope this can help Dereck
hi and thanks for your response dereck_j2 Looks really interesting, will test it asap thanks again Oliver