Remove product price in item grid

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
14 年 前
I have my site set up so that the customers selects what they want individually...when you goto the item selection page is shows the product names, short descriptions, and the price...which now reads 0.00 .... is there a way to erase that 0.00 completely or change it manually to a base price or something?
14 年 前
Hi,

You can try the following solution to hide a zero price.

In the code of ProductPriceControl(Modules/ProductPrice.ascx), method BindData insert the following line


                ...
  
                if(finalPriceWithoutDiscount == Decimal.Zero)
                {
                    this.Visible = false;
                }
            }
            else
                this.Visible = false;

           ...
14 年 前
see [url] https://www.nopcommerce.com/boards/topic.aspx?topicid=3526 [/url] for more ideas
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.