/admin/includes/modules/product/collect_info.php
near the top of the file, you'll see a section like this:
Code:
if (!defined('IS_ADMIN_FLAG')) {
die('Illegal Access');
}
$parameters = array('products_name' => '',
'products_description' => '',
'products_url' => '',
'products_id' => '',
'products_quantity' => '',
'products_model' => '',
'products_image' => '',
'products_price' => '',
'products_virtual' => DEFAULT_PRODUCT_PRODUCTS_VIRTUAL,
'products_weight' => '',
'products_date_added' => '',
'products_last_modified' => '',
note the line that says:
Code:
'products_weight' => '',
inside the quotes on that line, enter whatever you would normally enter as a default value for weight. So, if you're entering 500 for 500 grams, make it say:
Code:
'products_weight' => '500',
or if 500 grams is really 0.5, make it:
Code:
'products_weight' => '0.5',