Hi,
If you want all your product to be sold per quantity of 3, the solution will probably be to edit the file "administrator/components/com_hikashop/helpers/cart.php" and change these lines :
function hikashopQuantityChange(field,plus,max,min){
var fieldEl=document.getElementById(field);
var current = fieldEl.value;
current = parseInt(current);
if(plus){
if(max==0 || current<max){
fieldEl.value=parseInt(fieldEl.value)+1;
}else if(max && current==max){
alert(\''.JText::_('NOT_ENOUGH_STOCK',true).'\');
}
}else{
if(current>1 && current>min){
fieldEl.value=current-1;
}
}
return false;
}
By :
function hikashopQuantityChange(field,plus,max,min){
var fieldEl=document.getElementById(field);
var current = fieldEl.value;
current = parseInt(current);
if(plus){
if(max==0 || current<max){
fieldEl.value=parseInt(fieldEl.value)+3;
}else if(max && current==max){
alert(\''.JText::_('NOT_ENOUGH_STOCK',true).'\');
}
}else{
if(current>1 && current>min){
fieldEl.value=current-3;
}
}
return false;
}