Jump to content

Don't show % discount on group


Recommended Posts

Hi!!! I'm from Argentina, so my english isn't good enough, but I'm gonna do the best.

 

I got a this problem: 

  1. I created groups of clients. 
  2. Each one have different percents of discounts. 
  3. When I introduce a percent of discount to a category of products, this percent isn't shown to the client, just the final price, without the classic:  $100  $150 -50%
  4. But when I introduce a discount to a single product, the price shows the percent of discount to the client (I just want them to see the final price).
 

So... ¿How can I do to not show the percent of discount to the client? (just showing the final price)

Link to comment
Share on other sites

So you want to hide the percentage when you add a normal discount? You need to modify product.tpl, and remove this

								<p id="reduction_percent" {if !$product->specificPrice || $product->specificPrice.reduction_type != 'percentage'} style="display:none;"{/if}>
									<span id="reduction_percent_display">
										{if $product->specificPrice && $product->specificPrice.reduction_type == 'percentage'}-{$product->specificPrice.reduction*100}%{/if}
									</span>
								</p>
								<p id="old_price"{if (!$product->specificPrice || !$product->specificPrice.reduction) && $group_reduction == 0} class="hidden"{/if}>
									{if $priceDisplay >= 0 && $priceDisplay <= 2}
										<span id="old_price_display">{if $productPriceWithoutReduction > $productPrice}{convertPrice price=$productPriceWithoutReduction}{/if}</span>
										<!-- {if $tax_enabled && $display_tax_label == 1}{if $priceDisplay == 1}{l s='tax excl.'}{else}{l s='tax incl.'}{/if}{/if} -->
									{/if}
								</p>
  • Like 1
Link to comment
Share on other sites

  On 8/11/2014 at 8:14 AM, Nemo1 said:

 

So you want to hide the percentage when you add a normal discount? You need to modify product.tpl, and remove this

								<p id="reduction_percent" {if !$product->specificPrice || $product->specificPrice.reduction_type != 'percentage'} style="display:none;"{/if}>
									<span id="reduction_percent_display">
										{if $product->specificPrice && $product->specificPrice.reduction_type == 'percentage'}-{$product->specificPrice.reduction*100}%{/if}
									</span>
								</p>
								<p id="old_price"{if (!$product->specificPrice || !$product->specificPrice.reduction) && $group_reduction == 0} class="hidden"{/if}>
									{if $priceDisplay >= 0 && $priceDisplay <= 2}
										<span id="old_price_display">{if $productPriceWithoutReduction > $productPrice}{convertPrice price=$productPriceWithoutReduction}{/if}</span>
										<!-- {if $tax_enabled && $display_tax_label == 1}{if $priceDisplay == 1}{l s='tax excl.'}{else}{l s='tax incl.'}{/if}{/if} -->
									{/if}
								</p>

 

Thanks so much for your help Nemo1!.. The problem is that even with the code modification it's still showing the price in the same way.

The left side is how it's showing right now, and the right side shows the way I want it! It's really crazy, I don't understand why this problem happens just when I modify the percent of discount of a single product and it doesn't happen when I modify the percent of discount of a category of products.

 

example.jpg

Link to comment
Share on other sites

  On 8/13/2014 at 9:12 AM, Nemo1 said:

Try clearing cache from advanced parameters, performance. After you remove the code, of course :)

 

Thanks Again Nemo1, but even removing all the caché (after I remove the code), it's still showing the persent of discount!

It's like a Mission Impossible

Link to comment
Share on other sites

  On 8/13/2014 at 7:49 PM, Nemo1 said:

oh my, can you check if there are other occurrences of it?

 

Yes Nemo1, I've been searching in forums, but nothing!... There're a lot of solved problems but not this problem.

What if I edit the "producto-list" file?

Link to comment
Share on other sites

  On 8/14/2014 at 7:49 AM, Nemo1 said:

I meant other occurrences of that percentage discount code in the file. Well... you have to edit that file, it's what I said, did you use any other method? It's product-list.tpl

 

I tried to modify "product-list.tpl" but the problem doesn't seem to be there.

The solution may be in the file "product.tpl", modified some things... but unfortunately are knowledge that exceed my ability.  :(

Link to comment
Share on other sites

Finally I solved it.

I leave to you my solution:

 

Delete these lines on product.tpl file (the last one appears two times):

<p id="old_price"{if (!$product->specificPrice || !$product->specificPrice.reduction) && $group_reduction == 0} class="hidden"{/if}>
                                    {if $priceDisplay >= 0 && $priceDisplay <= 2}
                                        <span id="old_price_display">{if $productPriceWithoutReduction > $productPrice}{convertPrice price=$productPriceWithoutReduction}{/if}</span>
                                        <!-- {if $tax_enabled && $display_tax_label == 1}{if $priceDisplay == 1}{l s='tax excl.'}{else}{l s='tax incl.'}{/if}{/if} -->
                                    {/if}
                                </p>
<p id="reduction_amount" {if !$product->specificPrice || $product->specificPrice.reduction_type != 'amount' || $product->specificPrice.reduction|floatval ==0} style="display:none"{/if}>
                                <span id="reduction_amount_display">
                                {if $product->specificPrice && $product->specificPrice.reduction_type == 'amount' && $product->specificPrice.reduction|intval !=0}
                                    -{convertPrice price=$productPriceWithoutReduction-$productPrice|floatval}
                                {/if}
                                </span>
                            </p>
<p id="reduction_percent" {if !$product->specificPrice || $product->specificPrice.reduction_type != 'percentage'} style="display:none;"{/if}>
<span id="reduction_percent_display">
{if $product->specificPrice && $product->specificPrice.reduction_type == 'percentage'}-{$product->specificPrice.reduction*100}%{/if}
</span>
</p>

 

Delete these lines on product-list.tpl file (both codes appears two times):

<span class="old-price product-price">
                                            {displayWtPrice p=$product.price_without_reduction}
                                        </span>
<p id="reduction_percent" {if !$product->specificPrice || $product->specificPrice.reduction_type != 'percentage'} style="display:none;"{/if}>
<span id="reduction_percent_display">
{if $product->specificPrice && $product->specificPrice.reduction_type == 'percentage'}-{$product->specificPrice.reduction*100}%{/if}
</span>
</p>
  • Like 1
Link to comment
Share on other sites

×
×
  • Create New...