Change signup page text from ($x) to ($x/month)

Discussion in 'Templates customization' started by healthheroes, Apr 20, 2008.

  1. healthheroes

    healthheroes Member

    Joined:
    Jan 24, 2008
    Messages:
    48
    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
  2. skippybosco

    skippybosco CGI-Central Partner Staff Member

    Joined:
    Aug 22, 2006
    Messages:
    2,526
    Modify the signup template (\amember\templates\signup.html) to add the text /month to show up after the amount
  3. davidm1

    davidm1 aMember User & Partner

    Joined:
    May 16, 2006
    Messages:
    4,437
    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
  4. healthheroes

    healthheroes Member

    Joined:
    Jan 24, 2008
    Messages:
    48
    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
  5. tomfra

    tomfra Member

    Joined:
    Dec 21, 2006
    Messages:
    199
    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
  6. healthheroes

    healthheroes Member

    Joined:
    Jan 24, 2008
    Messages:
    48
    Thanks Tomas, you were asolutely right, I uploaded it to the correct folder and it worked - great, thanks.

Share This Page