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.
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 > 0 }{$config.currency|default:"$"}{$p.price}{else}free{/if})</b> Changed to: PHP: <label for="product{$p.product_id}"><b>{$p.title}{if $p.price > 0 }{else}free{/if}</b><br Now there is no price that will show up on the first section of the signup process!