Quote Originally Posted by edingtoncollection View Post

if ($_SESSION['customer_whole'] && $_SESSION['customer_whole'] != '0' ) {
$special_price = false;
} else {



if ($_SESSION['customer_whole'] && $_SESSION['customer_whole'] != '0' ) {
return false;
} else {
Ok, so I got the code working.
When logged in - sales price does NOT display.
When not logged in - sales price displays.

I would like the reverse to happen. I want MSRP to always remain as it is and the wholesale price to be the one discounted.

How can I make this happen? I tried several variations of the above code with no success.