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

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
1234567890
Ensign (ENS)
Ensign (ENS)
Posts: 2
Joined: Thu Jul 01, 2010 2:56 pm

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

Post by 1234567890 » Thu Jul 01, 2010 3:57 pm

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.

User avatar
s_ismail
Commander (CMDR)
Commander (CMDR)
Posts: 162
Joined: Mon Nov 09, 2009 12:20 am
Contact:

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

Post by s_ismail » Fri Jul 02, 2010 6:02 am

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");

Post Reply