I just got this 7.0 store up and running and now they want to change their business model.
Long story short, I need to hide all pricing. I put it in catalog mode, but that doesn't remove pricing.
is there one switch for this? The category pages and the home page seem to give me the hardest time. product pages are done.
Anyone??
Hide all pricing?
Re: Hide all pricing?
Change the ProductPrice control so that it hides itself if the catalog mode is enabled. You can do this by editing the ConLib/Utility/ProductPrice.ascx file. Place the following code at the very end of the Page_InIt method of this control.
There may be some places where you may need to disable or hide the products yourself but i think on a great part this workaround will work.
Code: Select all
this.Visible = !Token.Instance.Store.Settings.ProductPurchasingDisabled;