How can I change the default value of "Shippable" in the
TAXES & SHIPPING section of admin,
to Yes and instead of No?
I would think Yes would be prefered.
How can I change the default value of "Shippable" to Yes?
-
- Commodore (COMO)
- Posts: 433
- Joined: Wed May 28, 2008 9:42 am
- Location: Concord, NC
- Contact:
Re: How can I change the default value of "Shippable" to Yes?
Another question I have pondered. I imported without this field and had to go thru the database to change them.
When one of our employee's create an item this would just be 2 more steps that would have to be taken. If defaulted it could save time/mistakes.
When one of our employee's create an item this would just be 2 more steps that would have to be taken. If defaulted it could save time/mistakes.
Re: How can I change the default value of "Shippable" to Yes?
I missed this field in the import also, I just ran:
update ac_products
set ShippableId = 1
update ac_products
set ShippableId = 1
Re: How can I change the default value of "Shippable" to Yes?
I think on Admin its already fine. When adding a new product it is already Yes and this what you are asking for because on the edit product screen this option is loaded from database. So if in the database you have the products with Shippable option set as No then you must change those.
For example you can use some code like this somewhere on the Merchant side which loads all the products and then set all these to Shipable= Yes
For example you can use some code like this somewhere on the Merchant side which loads all the products and then set all these to Shipable= Yes
Code: Select all
ProductCollection products = ProductDataSource.LoadForStore();
foreach (Product product in products)
{
product.ShippableId = 1;
product.Save();
}
Re: How can I change the default value of "Shippable" to Yes?
Yes, the default is Yes . . should have tried to add a new product first
The default for the Import is No.
Also, the Import default for the WarehouseId is 0.
I ran this just incase that may be a problem:
update ac_products
set WarehouseId = 1

The default for the Import is No.
Also, the Import default for the WarehouseId is 0.
I ran this just incase that may be a problem:
update ac_products
set WarehouseId = 1
-
- Commodore (COMO)
- Posts: 433
- Joined: Wed May 28, 2008 9:42 am
- Location: Concord, NC
- Contact:
Re: How can I change the default value of "Shippable" to Yes?
We are on the same boat haha.Mike718NY wrote:Yes, the default is Yes . . should have tried to add a new product first![]()
The default for the Import is No.
Also, the Import default for the WarehouseId is 0.
I ran this just incase that may be a problem:
update ac_products
set WarehouseId = 1
I've only imported - never added a product.
Thanks for the quick answers again.