nicolas wrote: If your quantity field is displayed on product pages (not on listings) then you can retrieve the custom field like that:
$productClass = hikashop_get('class.product');
$product = $productClass->get(JRequest::getInt('cid'));
echo $product->CUSTOM_FIELD_COLUMN_NAME;
where CUSTOM_FIELD_COLUMN_NAME is the column name of your custom field.
When you do it like this, does the system actually use the number from the custom field as if it was input in the normal input box? For instance, if I create a custom drop down with exact predetermined quantities, will it treat the value of the selected drop down (if it's a number) as normal (that way it will calculate the weight for shipping and the total cost and all that)? To put it in programmer terminology, will it populate the quantity field for the cart DB table with the value of the custom field (again, obviously only if the value of the custom field selection is a number or integer or whatever)?