remove price shown on sign up page

Discussion in 'Templates customization' started by ninjaplz, Feb 2, 2009.

  1. ninjaplz

    ninjaplz New Member

    Joined:
    Jan 30, 2009
    Messages:
    4
    Anyone know how to remove the displayed price on the sign up page? I have looked through the code on signup.php and the templates/signup.html but I cannot seem to find the price code?

    My website explains the price pretty well, and this is a subscription with a trial period, so displaying the cost after the trial first is a bit confusing. Like the trial is $1 and the recurring is $10. Right now when they go to the signup page, they see $10 and it mentions nothing of a subscription. This seems to be running people off.
  2. ninjaplz

    ninjaplz New Member

    Joined:
    Jan 30, 2009
    Messages:
    4
    I figured it out after crawling through the code for a while... Here it is.

    PHP:
    <label for="product{$p.product_id}"><b>{$p.title} ({if $p.price }{$config.currency|default:"$"}{$p.price}{else}free{/if})</b>
    Changed to:

    PHP:
    <label for="product{$p.product_id}"><b>{$p.title}{if $p.price }{else}free{/if}</b><br 
    Now there is no price that will show up on the first section of the signup process!

Share This Page