Hi,
HikaShop does not have this option but it is already possible to do it.
You can override the view "product | quantity" via the menu Display>Views in order to display a text when the product is available instead of displaying the quantity.
Two modifications are required:
<div class="hikashop_product_stock">
<?php
// Just add this line
echo JText::_('IN_STOCK');
if(!empty($this->row->has_options)){
And
<div class="hikashop_product_stock">
<?php
// Just add this line
echo JText::_('IN_STOCK');
if($this->row->product_quantity==1){
if(JText::_('X_ITEM_IN_STOCK')=='X_ITEM_IN_STOCK'){
$text = JText::sprintf('X_ITEMS_IN_STOCK',$this->row->product_quantity);
}else{
$text = JText::sprintf('X_ITEM_IN_STOCK',$this->row->product_quantity);
}
}else{
$text = JText::sprintf('X_ITEMS_IN_STOCK',$this->row->product_quantity);
}
// And comment the next one
//echo '<span class="hikashop_product_stock_count">'.$text.'<br/></span>';
if($config->get('button_style','normal')=='css'){
After that, you should create a new translation entry for "IN_STOCK" in your override file.
Regards,