signup.html or php page

Discussion in 'Templates customization' started by mrvalentine, Feb 29, 2008.

  1. mrvalentine

    mrvalentine New Member

    Joined:
    Jan 19, 2008
    Messages:
    2
    I looked the following thread prior to posting this message:

    http://www.amember.com/forum/showthread.php?t=1934

    My question is: where is the function or value that controls what is displayed in the "Membership Type *" row, on the sign-up page.

    Here's the problem... My subscription price for the first 30 days. is $147.00 and then after that it is $79.00 a month for 2 months.

    Amember displays ($79.00) after the name of the subscription. An example:

    The Best Membership Ever! ($79.00)

    It is confusing people because they think go into the signup page knowing that it is $147.00 but then the first line says:

    The Best Membership Ever! ($79.00)

    I have temporarily put instructions in the description box below it but all I need to do is remove the ($79) completely.

    But I don't know if that is going to mess up PayPal; meaning is that value or string or whatever you call it...

    Is that passed along to PayPal. Or can I delete it so it doesn't show and if so how do you do it?
  2. davidm1

    davidm1 aMember User & Partner

    Joined:
    May 16, 2006
    Messages:
    4,437
    You can remove that (79.00) area in the member.html template.
    <label for="product{$p.product_id}"><b>{$p.title} ({if $p.price > 0 }{$config.currency|default:"$"}{$p.price}{else}free{/if})</b><br />

    becomes
    <label for="product{$p.product_id}"><b>{$p.title} {if $p.price = 0 }(free){/if}</b><br />

    David
  3. mrvalentine

    mrvalentine New Member

    Joined:
    Jan 19, 2008
    Messages:
    2
    Just saw your post David... thanks, I've been following your site and your replies GREAT job! Thanks for the post.

    I just tried it and it didn't remove that part... but I didn't try it extensively because i don't have the time right now and I don't want to break my "aMember" I need to take my time and concentrate.

    I'll try it some more in the A.M. I just wanted to say thank for the post though!!

    ;-)

Share This Page