Hi,
What can be done is use the function "onBeforeCartUpdate()" in the plugin.
www.hikashop.com/support/support/documen...l#onBeforeCartUpdate
In this function, get the min_quantity value for the product to add, and do some php checks on the $quantity variable and $product->product_min_per_order, if the $quantity value is not a multiple of the $product->product_min_per_order one so set $do to false and display a joomla system message thanks to:
$app = JFactory::getApplication();
$app->enqueueMessage('Not a correct quantity, please choose XX or YY.');
And of course, if the quantity is correct, just let $do as true.
For the input field, you will have to edit the view "product / show_quantity" and replace:
return hikashopQuantityChange('hikashop_product_quantity_field_<?php echo $i; ?>',1,<?php echo $max_quantity; ?>,<?php echo $min_quantity; ?>);
By another function which will increment the value by the product_min_per_order, and check if the entered quantity is not too big regarding the product_max_per_order, so javascript knowledges requried.