Hi, I'd like to set up a signup link so clients can sign up for one specific aMember product / membership type. Then when they get to signup, rather than seeing all products on the signup page, they just see the one specified product. As it is now, we have a link to sign up, and all active products are displayed. How can I achieve just the one product from a link?
You need to set up price groups, then link to the signup page using: signup.php?price_group=# You can also create new signup.php pages and place this on the top $price_group = 1; so you can hide the URL. David
Hi David, I have been searching for an answer to a similar question and seen where you mention "link to" a certain page or the other. What do you mean? Example please? Thanks, Kirk
When you are setting up a product you have the option of setting a product code. This product code can be passed as a parameter of the signup.php page to specify which products to show. Example You have 4 products: Product A is a member of price group 1 Product B is a member of price group 2 Product C is a member of price group 1 Product D is a member of price group -3 <- note this is negative If you go to signup.php with no parameters ysou will see products A, B & C (not D because it is negative which means hidden by default) If you go to signup.php?price_group=1 you will see products A & C If you go to signup.php?price_group=-3 you will see product D Lastly, if you want the product to be checked/selected by default you can specify product_id=# <- where # is the id number of the product. PS There is a wizard link on the bottom of your manage product page that will build these URLS for you (/amember/admin/signup_link_wizard.php)
Is it possible to link to more than one price group at a time? i.e. .../signup.php?price_group=-5&-17 (which doesn't work by the way)
Hi neutron, Not possible to list more than 1 price group at a time. If you want to list a couple of products for that price group, you can use the same price group number for the few products you want to list together. Lee
Lee's got it. in the product settings, you can declare more than 1 price group using a comma Product 1 price group: -12 Product 2 price group: -12,-45 David