Hi,
You would need to add:
<tr class="margin"><td colspan="<?php echo $row_count; ?>" class="hikashop_cart_empty_footer"></td></tr>
<tr>
<td colspan="<?php echo $row_count - 2; ?>" class="hikashop_cart_empty_footer"></td>
<td id="hikashop_checkout_cart_total2_title" class="hikashop_cart_subtotal_title hikashop_cart_title"><?php
echo 'Subtotal after coupon';
?></td>
<td class="hikashop_cart_subtotal_value" data-title="<?php echo JText::_('SUBTOTAL'); ?>">
<span class="hikashop_checkout_cart_subtotal"><?php
if(!empty($this->options['price_with_tax']))
echo $this->currencyClass->format(@$cart->total->prices[0]->price_value_with_tax+ (@$cart->coupon->discount_value_without_tax * -1),@$cart->total->prices[0]->price_currency_id);
else
echo $this->currencyClass->format(@$cart->total->prices[0]->price_value+(@$cart->coupon->discount_value * -1),@$cart->total->prices[0]->price_currency_id);
?></span>
</td>
</tr>
after the code:
<tr>
<td colspan="<?php echo $row_count - 2; ?>" class="hikashop_cart_empty_footer"></td>
<td id="hikashop_checkout_cart_coupon_title" class="hikashop_cart_coupon_title hikashop_cart_title"><?php
echo JText::_('HIKASHOP_COUPON');
?></td>
<td class="hikashop_cart_coupon_value" data-title="<?php echo JText::_('HIKASHOP_COUPON'); ?>">
<span class="hikashop_checkout_cart_coupon"><?php
if(empty($this->options['price_with_tax']))
echo $this->currencyClass->format(@$cart->coupon->discount_value_without_tax * -1, @$cart->coupon->discount_currency_id);
else
echo $this->currencyClass->format(@$cart->coupon->discount_value * -1, @$cart->coupon->discount_currency_id);
?></span>
</td>
</tr>
Please understand that our support is for questions regarding the use of Hikashop or bug reports. For custom development needs like that, you can contact our partners (
www.hikashop.com/home/our-partners.html
) or us (
www.hikashop.com/support/contact-us.html
).
I did it this time as it was just a smal thing but beware that it's an exception to the rule.