Page 1 of 1

How to default Shippable field to NO on Add Product page?

Posted: Thu Jul 01, 2010 3:57 pm
by 1234567890
While adding new product on AddProduct.aspx page, how to default Shippable field to No? most of the product we sell is not shippable. we would like to default this field to No for ease of management.

Re: How to default Shippable field to NO on Add Product page?

Posted: Fri Jul 02, 2010 6:02 am
by s_ismail
just locate this code in AddProduct.aspx.cs

Code: Select all

SetSelectedItem(IsShippable, _Product.ShippableId.ToString());
and replace with this

Code: Select all

SetSelectedItem(IsShippable, "0");