[SOLVED] Hide discount amount in cart and wishlist

  • Posts: 294
  • Thank you received: 22
9 years 3 months ago #224094

-- HikaShop version -- : 2.6.0
-- Joomla version -- : 3.4.5
-- PHP version -- : 5.6

Hi,

Can anyone tell me how to hide the discount amount in the shopping cart and wishlist?
I managed to hide the discount on the normal pages, but cannot seem to find any option to hide it in the cart and wishlist.

Thanks for your response,
Nico

Last edit: 9 years 3 months ago by nico.van.leeuwen.

Please Log in or Create an account to join the conversation.

  • Posts: 83541
  • Thank you received: 13516
  • MODERATOR
9 years 3 months ago #224102

Hi,

If you're talking about the cart and wishlist modules, you can edit their settings via the Joomla modules manager and you'll be able to change the display of the discounted prices with the corresponding setting.

Please Log in or Create an account to join the conversation.

  • Posts: 294
  • Thank you received: 22
9 years 3 months ago #224315

Hi Nicolas,

Yes, this fixes it for the cart module in the sidebar.
But is does not for the menu item to the cart and wishlist.
In my config > display I have set the show discount to "no" and show discounted price to "no".
Did I miss a place to check for more settings?

Please Log in or Create an account to join the conversation.

  • Posts: 13201
  • Thank you received: 2322
9 years 3 months ago #224327

Hi,

Please edit the view "cart / listing_price" and replace the code:

				if($this->params->get('show_discount',3)==3){
					$defaultParams = $config->get('default_params');
					$this->params->set('show_discount',$defaultParams['show_discount']);
				}
By:
				$defaultParams = $config->get('default_params');
				$this->params->set('show_discount',$defaultParams['show_discount']);

The following user(s) said Thank You: nico.van.leeuwen

Please Log in or Create an account to join the conversation.

  • Posts: 294
  • Thank you received: 22
9 years 3 months ago #224446

Hi Xavier,

This works perfect, thank you.

Please Log in or Create an account to join the conversation.

  • Posts: 158
  • Thank you received: 5
6 years 5 months ago #298858

The location must of changed in more recent versions of Hikashop as I can't find that code now - can you please tell me where it is.

p.s. I've also tried editing views > checkout > listing price but nothing changed

Please Log in or Create an account to join the conversation.

  • Posts: 83541
  • Thank you received: 13516
  • MODERATOR
6 years 5 months ago #298859

Hi,

You should not need to edit any code with recent versions of HikaShop. The settings provided in the cart module, or the cart view of the checkout workflow or the menu items should allow you to control that.

Please Log in or Create an account to join the conversation.

  • Posts: 158
  • Thank you received: 5
6 years 5 months ago #298896

Hi Nicholas, I can't see anything in the cart module that allows you to select the price type. I have my price set to display the discounted amount in the default parameters for products and I'd like to keep it there on the product page. There doesn't seem to be anything on the checkout workflow to manage the discounted price either.

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.

Please Log in or Create an account to join the conversation.

  • Posts: 12953
  • Thank you received: 1778
6 years 5 months ago #298962

Hello,

You're right, we just added that function through the last Hikashop's version, you can download it through our website, install it and test it again.

Thank you for your feedback !
Kind regards,
Mohamed Thelji.

Please Log in or Create an account to join the conversation.

  • Posts: 158
  • Thank you received: 5
6 years 5 months ago #298970

You didn't read what I wrote did you? I'm mid-way through developing a new site and don't want to update the current live site as it messes up my template, so I have to develop the new dev site on the same version as I have had lots of errors importing the database from a different Hikashop version recently.

I'd just like some code to get rid of it for the time being please.

Please Log in or Create an account to join the conversation.

  • Posts: 12953
  • Thank you received: 1778
6 years 5 months ago #298987

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.

Please Log in or Create an account to join the conversation.

  • Posts: 158
  • Thank you received: 5
6 years 5 months ago #298989

Thanks Mohamed. I just tried this but it has no effect. I emptied my Joomla cache etc...

I even tried deleting both lines to see if it had any impact but nothing changed so I'm guessing it's the wrong file?

This is my css inspector on that page if it helps you?

Attachments:

Please Log in or Create an account to join the conversation.

  • Posts: 12953
  • Thank you received: 1778
6 years 5 months ago #298993

Hello,

The goal of that thread was to control the displaying of discounted prices of products through the cart module and not the cart displayed during the checkout workflow.

To achieve what you want a solution will be to directly edit the "components\com_hikashop\views\checkout\tmpl\listing_price.php" file and change these lines :

<span class="hikashop_product_price_full">
<?php
By :
<span class="hikashop_product_price_full">
<?php
$this->params->set('show_discount', DISPLAYING_MODE);

And replace DISPLAYING_MODE by :
- 4 to have the show discounted price option set to Display both
- 2 to have the show discounted price option set to Display the price before the discount is applied
- 1 to have the show discounted price option set to Display the discount amount

Kind regards,
Mohamed Thelji.

The following user(s) said Thank You: serbofleconcepts

Please Log in or Create an account to join the conversation.

  • Posts: 158
  • Thank you received: 5
6 years 5 months ago #298998

Sorted thanks.

I set the value to 0 to remove the discounted amount.

Please Log in or Create an account to join the conversation.

Time to create page: 0.114 seconds
Powered by Kunena Forum