
Originally Posted by
TSICOGS
Thanks for your help, let's just say Newbie Mistake.
Nothing to be ashamed of. We were all newbies at one stage, and the only ones that haven't made a newbie mistake are those that haven't tried to do anything.

Originally Posted by
TSICOGS
One other question if i can ask, how do i change them all in one shot to have the box unchecked for shipping in original container
I've never used this particular module, but I would have assumed that since this required a new field in the database then by default it would be unchecked for all products anyway.
Are you saying that they are being checked by default?
If this IS the case then you will probably need to make a small change to the /admin/includes/modules/update_product.php file.
Although I can't be precise, you will be looking for a pair of lines that read *something like*
Code:
$tmp_value = zen_db_prepare_input($_POST['products_originalContainer']);
$products_originalContainer = (!zen_not_null($tmp_value) || $tmp_value=='' || $tmp_value == 1) ? 1 : $tmp_value;
You will need to change this to:
Code:
$tmp_value = zen_db_prepare_input($_POST['products_originalContainer']);
$products_originalContainer = (!zen_not_null($tmp_value) || $tmp_value=='' || $tmp_value == 0) ? 0 : $tmp_value;
The stuff I've highlighted in BLUE almost certainly WON'T be what you'll find, you will need to identify the field name that is used for yourself. DON'T CHANGE THESE.
The NUMBERS I've highlighted in RED are what you'll need to change. IF in doubt please post this portion of *your* update_product.php file so that I (or someone else) can give more explicit information.
Cheers
RodG