The warning about the dimensions can be removed by editing the file at:
[cart-location]/admin/templates/Panels/product_javascript.html and removing this code
(around line 786)
if(!sellingDP &&
((isNaN(priceFormat(prodWidth.value)) || prodWidth.value
== "") ||
(isNaN(priceFormat(prodHeight.value)) ||
prodHeight.value == "") ||
(isNaN(priceFormat(prodDepth.value)) || prodDepth.value
== ""))) {
if(!confirm("%%LNG_AddProductWithEmptyDimensions%%"))
{
return false;
}
}
However, you can't remove the restriction on the product weight
because the database requires it.

The article has been updated successfully.