I use a custom PHP/mySQL site, that uses ShopSite only for the cart functionality. I am trying to set it up where I can pass the value of the item that is being added to the cart dynamically, rather than using the price set in the SS database.
Is the following the best (or only) way to achieve this?
- 1) Turn Variable pricing on for all products.
2) Set the price of ALL products to zero.
3) Pass the price for ALL products via my custom HTML <input type="hidden" name="$MYSKU:price" value="$MYPRICE">
Are there any unintended consequences that I am not aware of?
Thank you very much for your time, I appreciate it.