rodeirojg Posted August 11, 2014 Share Posted August 11, 2014 Hi!!! I'm from Argentina, so my english isn't good enough, but I'm gonna do the best. I got a this problem: I created groups of clients. Each one have different percents of discounts. 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%. 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 More sharing options...
NemoPS Posted August 11, 2014 Share Posted August 11, 2014 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> 1 Link to comment Share on other sites More sharing options...
rodeirojg Posted August 11, 2014 Author Share Posted August 11, 2014 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. Link to comment Share on other sites More sharing options...
NemoPS Posted August 13, 2014 Share Posted August 13, 2014 Try clearing cache from advanced parameters, performance. After you remove the code, of course 1 Link to comment Share on other sites More sharing options...
rodeirojg Posted August 13, 2014 Author Share Posted August 13, 2014 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 More sharing options...
NemoPS Posted August 13, 2014 Share Posted August 13, 2014 oh my, can you check if there are other occurrences of it? 1 Link to comment Share on other sites More sharing options...
rodeirojg Posted August 13, 2014 Author Share Posted August 13, 2014 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 More sharing options...
NemoPS Posted August 14, 2014 Share Posted August 14, 2014 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 1 Link to comment Share on other sites More sharing options...
rodeirojg Posted August 15, 2014 Author Share Posted August 15, 2014 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 More sharing options...
NemoPS Posted August 15, 2014 Share Posted August 15, 2014 No no, it IS product-list.tpl, product.tpl is for the product page only 1 Link to comment Share on other sites More sharing options...
rodeirojg Posted August 15, 2014 Author Share Posted August 15, 2014 On 8/15/2014 at 12:45 PM, Nemo1 said: No no, it IS product-list.tpl, product.tpl is for the product page only Well, I'll keep tryin' with "product-list.tpl"!!! Link to comment Share on other sites More sharing options...
rodeirojg Posted August 20, 2014 Author Share Posted August 20, 2014 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> 1 Link to comment Share on other sites More sharing options...
NemoPS Posted August 21, 2014 Share Posted August 21, 2014 Glad you solved it! And thanks for sharing the solution! 1 Link to comment Share on other sites More sharing options...
rodeirojg Posted August 21, 2014 Author Share Posted August 21, 2014 Thank you for your support!!! Link to comment Share on other sites More sharing options...
Recommended Posts