Hello, I have 8 individual membership products. mysite.com/1/ mysite.com/2/ mysite.com/3/ etc I plan to sell each one individually for $14.95. However, I'd like to have a deal where a person can buy all 8 for $59.95. I see that by using the Price_Group variable I can display all 8 products and using the product_id variable I can preselect them. This is one way to go, but it seems like it would be a lot simpler to my customers if it simply had one product entitled "Ultra Mega Product" and a price. I've all tried creating a unique product (#9) that achieved what I wanted but I haven't figured out how to get Amember to give access to mysite.com/1/ for product #1 and product #9. Any ideas? Brandon
Crate a new product #9 that is 59.98, and give access to product 9 in the protect folder setup. In the additional URLs section of the product add the links to all the products. David
I basically did that. The problem, which you may have seen on another thread, is the protection folder setup does not apply to dynamic sites. I created my "All in one" product and added URLs to all products in the "Additional URLs" section. However, when a test user purchases the product the show up under "Your Subscriptions in amember/member.php but if I click on them I'm told I don't have permission to be there. It's clear that the current permission setup is expecting both product_ids from the original product AND the all-in-one product. WAIT A MINUTE! I FIGURED IT OUT!! I control that with my $_product_id = array(1); code I use for the php_include protection. I can simply add in product #9 in there $_product_id = array(1, 9) and both product groups function as they should. Great! Thanks for the help! Brandon