-- HikaShop version -- : 2.5.4
-- Joomla version -- : 3.4.1
-- PHP version -- : 5.3.24
I have created a
product
that has multiple prices based on quantity (see attached screenshot). I have found a way to display the prices based on the minimum quantities instead of per unit by editing Hikashop->Display->Views->product/listing_price.php where it has:
echo '<span class="'.implode(' ',$classes).'">';
if($this->params->get('price_with_tax')){
echo $this->currencyHelper->format(@$price->price_value_with_tax,$price->price_currency_id);
}
if($this->params->get('price_with_tax')==2){
echo JText::_('PRICE_BEFORE_TAX');
}
if($this->params->get('price_with_tax')==2||!$this->params->get('price_with_tax')){
echo $this->currencyHelper->format(@$price->price_value,$price->price_currency_id);
}
To:
echo '<span class="'.implode(' ',$classes).'">';
if($this->params->get('price_with_tax')){
echo $this->currencyHelper->format(@$price->price_value_with_tax*$price->price_min_quantity,$price->price_currency_id);
}
if($this->params->get('price_with_tax')==2){
echo JText::_('PRICE_BEFORE_TAX');
}
if($this->params->get('price_with_tax')==2||!$this->params->get('price_with_tax')){
echo $this->currencyHelper->format(@$price->price_value*$price->price_min_quantity,$price->price_currency_id);
}
The problem I'm having is when you land on the page I would like it to show the price for 250 next to "Price with options:" instead of $0.00. I then also need it to update that price on quantity change and option change. For instance:
quantity of 500 with option as yes would display $65.00
quantity of 2000 with option as no would display $200.00
etc.
Right now the price is not updating at all, except if you change the option and then it is per unit ($0.02). What do I need to edit to make this happen.