I'm in kind of a weird place in that I'm currently running a Nuke site which has been a major pain, and in the not too distant future am going to move things to Joomla. Right now my customers are passed from Nuke to an outside service running membership signups for our non-profit. Once they create their membership record there they are passed back to our Nuke for the payment part of things. The outside service pretty much just maintains a database for us (which is why I want to get rid of it, no value added and monthly expenses). What I want to know (and cannot seem to find in the manual) is whether I can configure aMember with no payment stuff at all? I'd like to not have to set it so that it says "free" as that will confuse things when they are then told to pay. I just want to -- for right now -- use aMember to replace the outside service running the membership signups. Down the line I will want to integrate with Joomla and have already picked up the integration document from our payment processor. But for now, just handle the membership signups.
In signup.html you'll see this code: <label for="product{$p.product_id}"><b>{$p.title} ({if $p.price > 0 }{$config.currency|default:"$"}{$p.price}{else}Free{/if})</b><br /> change it to <label for="product{$p.product_id}"><b>{$p.title}</b><br /> That will remove the price from being displayed. David