Here is the problem:
I have multiple membership levels and per account the user gets displayed a different price amount for the product. Although, throughout the whole project its all SQL Query's for the price and it's too much to change.
Is there a way where I can call the current user id in the MYSQL database that the person is logged into and lets say they Gold Member they get price * .50 = (their new product price) silver member: price * .75
Now based on their account, the price gets multiplied and product_price will now return that new amount instead of the default $100 lets say.
Thank you.
IF()function or aCASEexpression.