Changing Product Data on signup page

Discussion in 'Customization & add-ons' started by t3digita, Apr 6, 2010.

  1. t3digita

    t3digita New Member

    Joined:
    Apr 6, 2010
    Messages:
    4
    I have all free products. On the signup page it shows productname (FREE). Is there anyway to remove the Free thing i.e the amount shown besides the product.

    Someone please help..thanks.
  2. davidm1

    davidm1 aMember User & Partner

    Joined:
    May 16, 2006
    Messages:
    4,437
    Yep, you can edit the signup page /amember/templates/signup.html
    do a search for Free.
    I think you can also change the custom product description in the product setting.

    David
  3. t3digita

    t3digita New Member

    Joined:
    Apr 6, 2010
    Messages:
    4
    re:

    in the sign up page i count not find free anywhere listed. But here is what i am looking to do:

    on the signup form it show 3 products that i have. All are free. It show em with radio buttons and are like this in format:

    • product 1 (FREE)
    • product 2 (FREE)
    • product 3 (FREE)

    How to remove the "(FREE)" after each product. The description is already empty.

    Let me know..thanks
  4. alexander

    alexander Administrator Staff Member

    Joined:
    Jan 8, 2003
    Messages:
    6,279
    Edit signup.html template and find this:
    Code:
            <label for="product{$p.product_id}"><b>{$p.title}</b> ({$p.terms})<br />
    
    change above line to:
    Code:
            <label for="product{$p.product_id}"><b>{$p.title}</b><br />
    
  5. t3digita

    t3digita New Member

    Joined:
    Apr 6, 2010
    Messages:
    4
    Thanks. Worked perfectly fine.

Share This Page