Hello,
You're right, I actually missed that part and directly developed the feature you needed, my bad :
I'm on 3.4.0 and can't upgrade until I go live as I need to maintain HikaShop levels across both live and dev sites.
In your case the best solution will directly be to edit the "administrator\components\com_hikashop\views\cartmodules\tmpl\options_price.php" file and replace these lines :
<input type="hidden" name="<?php echo $this->name.'[show_original_price]'; ?>" value="<?php echo $this->element['show_original_price']; ?>"/>
<input type="hidden" name="<?php echo $this->name.'[show_discount]'; ?>" value="<?php echo $this->element['show_discount']; ?>"/>
By :
<dl class="hika_options" id="show_discounted_price_line" style="<?php echo $style; ?>" data-part="price">
<dt class="hikashop_option_name"><?php
echo JText::_('SHOW_DISCOUNTED_PRICE');
?></dt>
<dd class="hikashop_option_value"><?php
if(!isset($this->element['show_discount']))
$this->element['show_discount'] = 3;
echo $this->discountDisplayType->display($this->name.'[show_discount]', $this->element['show_discount'], true);
?></dd>
</dl>
<input type="hidden" name="<?php echo $this->name.'[show_original_price]'; ?>" value="<?php echo $this->element['show_original_price']; ?>"/>
Then, you'll just have to use the "show discounted price" option through the "Hikashop Options" tab of your cart module configuration page.
Kind regards,
Mohamed Thelji.