Blah, I should have been clearer. My apologies. Thank you so much for helping. I'll try to explain it better.
As it is now, products have two options:
"Purchase Now" (this takes the buyer straight to their cart)
"Add to Cart" (which, I think, adds the product to the mini cart, without leaving the page the buyer is on)
I am trying to set it up so that one product, which has two versions, only has one product page, but two sets of links for purchasing.
One set for the standard version, and one for the deluxe version.
The product is entered to the system as the standard version, and then in the "more info" section, I've included the links to "purchase now" or "add to cart" the deluxe version.
Which adds the deluxe version to the cart, but which is a product placed on a hidden page.
The "Add to Cart" function uses javascript to add the product to the cart:
- Code: Select all
javascript:addToCart(RegularProduct)
I tried adding a link that uses:
- Code: Select all
javascript:addToCart(DeluxeProduct)
in the "more info" section, but, as expected, it's not quite so simple.
Is there a way to implement an "Add to Cart" link to a product page, that isn't the product page of the linked item?
I'm trying to find a clear way to describe this, but it's difficult. Does any of that make sense?