We are wholesale company, we only want the login customer can look at the price, is there anyway to set that?
thank you for all your help
please help ...
Re: please help ...
Not clear what you are looking for, please explain it in detail.
Re: please help ...
we looking for a setting that only show the price to login customer only, other people would not be able to see the item price if they are not login to the website.
Re: please help ...
For this you need some code customization. All you needed is to put some show/hide logic depending upon user's IsAnonymous property. For example
Code: Select all
pricecontrol.Visible = !Token.Instance.User.IsAnonymous;
Re: please help ...
You can also setup retail price, and special pricing rule for user group called wholesale, and you could even have different levels of pricing. They would have to log in to see there price.