Hi, I'm trying to get my site approved by clickbank but they say each product on my sign up page should indicate its monthly. For example, the amember default format for displaying products and prices is like this: -- "Gold Membership ($30.00)" Clickbank wants to see: -- "Gold Membership ($30.00/month)" How do I do that? Thanks HH
Modify the signup template (\amember\templates\signup.html) to add the text /month to show up after the amount
change: <label for="product{$p.product_id}"><b>{$p.title} ({if $p.price > 0 }{$config.currency|default:"$"}{$p.price}{else}free{/if})</b><br /> to <label for="product{$p.product_id}"><b>{$p.title} ({if $p.price > 0 }{$config.currency|default:"$"}{$p.price} / month{else}free{/if})</b><br /> David
I tried your suggestion David but didnt work I changed this: <label for="product{$p.product_id}"><b>{$p.title} ({if $p.price > 0 }{$config.currency|default:"$"}{$p.price}{else}fre e{/if})</b><br /> to this <label for="product{$p.product_id}"><b>{$p.title} ({if $p.price > 0 }{$config.currency|default:"$"}{$p.price} / month{else}free{/if})</b><br /> in the signup.html template but nothing happened, it did not appear on the page. These are my signup.php & signup.html pages here: http://www.dog-book-of-the-month-club.com/amember/signup.php http://www.dog-book-of-the-month-club.com/amember/signup.html Did I do something wrong? Thanks, HH
The template should be located in /amember/templates - i.e. /amember/templates/signup.html , not /amember/signup.html. Make sure it's in the right directory, the link you posted leads to an incorrect location for the .html template. Tomas
Thanks Tomas, you were asolutely right, I uploaded it to the correct folder and it worked - great, thanks.