hi, Does somebody k know how to get product groups displayed as separate dropdown lists on the signup page? in other words, how to get each one displayed individually. The code for getting each newsletter thread separately in the signup would be also useful. I found this code Code: <select name=product_id size=1> {foreach from=$products item=p} <option value="{$p.product_id}" {if $p.product_id == $smarty.request.product_id }selected{/if}> {$p.title} </option> {/foreach} But it displays all products in the same list which i dont want. I would appreciate your prompt answer. Thank you.
I kinda figure out the first thing Code: <tr> <th>Product group 0</th> <td><select name=product_id size=1> {foreach from=$products item=p} {if $p.price_group eq "0"}<option value="{$p.product_id}"> {$p.title} </option>{/if} {/foreach} </select></td> </tr> test it to see if it works for you. Now i just need the newsletter thread one.
Enable amember CP -> Setup -> Advanced -> Allow to select multiple products Checkboxes will be used instead of select then.