danstan Posted September 16, 2013 Share Posted September 16, 2013 Hi, How do I remove the Sliding scale pricing box underneath my product details? thanks Link to comment Share on other sites More sharing options...
Jiten rash (away) Posted September 16, 2013 Share Posted September 16, 2013 Sliding scale pricing box can u be more specific .. Link to comment Share on other sites More sharing options...
danstan Posted September 16, 2013 Author Share Posted September 16, 2013 Please find the attached screen shot http://s11.postimg.org/ovfsszij7/manager_cards.png Link to comment Share on other sites More sharing options...
Jiten rash (away) Posted September 16, 2013 Share Posted September 16, 2013 (edited) i guess it product page i dont understand that language meer informatie may be more info ok im correct open product.tpl comment out this part of code line 459 to 497 (note:i have tested in PS 1.5.4) {if (isset($quantity_discounts) && count($quantity_discounts) > 0)}<!-- quantity discount --><ul class="idTabs clearfix"> <li><a href="#discount" style="cursor: pointer" class="selected">{l s='Sliding scale pricing'}</a></li></ul><div id="quantityDiscount"> <table class="std"> <thead> <tr> <th>{l s='Product'}</th> <th>{l s='From (qty)'}</th> <th>{l s='Discount'}</th> </tr> </thead> <tbody> {foreach from=$quantity_discounts item='quantity_discount' name='quantity_discounts'} <tr id="quantityDiscount_{$quantity_discount.id_product_attribute}"> <td> {if (isset($quantity_discount.attributes) && ($quantity_discount.attributes))} {$product->getProductName($quantity_discount.id_product, $quantity_discount.id_product_attribute)} {else} {$product->getProductName($quantity_discount.id_product)} {/if} </td> <td>{$quantity_discount.quantity|intval}</td> <td> {if $quantity_discount.price >= 0 OR $quantity_discount.reduction_type == 'amount'} -{convertPrice price=$quantity_discount.real_value|floatval} {else} -{$quantity_discount.real_value|floatval}% {/if} </td> </tr> {/foreach} </tbody> </table></div>{/if} LIKE THIS <!--{if (isset($quantity_discounts) && count($quantity_discounts) > 0)}<!-- quantity discount<ul class="idTabs clearfix"> <li><a href="#discount" style="cursor: pointer" class="selected">{l s='Sliding scale pricing'}</a></li></ul><div id="quantityDiscount"> <table class="std"> <thead> <tr> <th>{l s='Product'}</th> <th>{l s='From (qty)'}</th> <th>{l s='Discount'}</th> </tr> </thead> <tbody> {foreach from=$quantity_discounts item='quantity_discount' name='quantity_discounts'} <tr id="quantityDiscount_{$quantity_discount.id_product_attribute}"> <td> {if (isset($quantity_discount.attributes) && ($quantity_discount.attributes))} {$product->getProductName($quantity_discount.id_product, $quantity_discount.id_product_attribute)} {else} {$product->getProductName($quantity_discount.id_product)} {/if} </td> <td>{$quantity_discount.quantity|intval}</td> <td> {if $quantity_discount.price >= 0 OR $quantity_discount.reduction_type == 'amount'} -{convertPrice price=$quantity_discount.real_value|floatval} {else} -{$quantity_discount.real_value|floatval}% {/if} </td> </tr> {/foreach} </tbody> </table></div>{/if}--> Edited September 16, 2013 by Jiten rash (see edit history) 1 Link to comment Share on other sites More sharing options...
danstan Posted September 16, 2013 Author Share Posted September 16, 2013 Thanks that worked Link to comment Share on other sites More sharing options...
danstan Posted September 16, 2013 Author Share Posted September 16, 2013 Thanks, that worked! Link to comment Share on other sites More sharing options...
vekia Posted September 16, 2013 Share Posted September 16, 2013 Jiten thanks for solution im going to mark this topic as [solved] best regards 1 Link to comment Share on other sites More sharing options...
Recommended Posts