gabdr Posted October 28, 2011 Share Posted October 28, 2011 Пропадает количество товара в product.tpl при загрузке страницы кол-во шт. есть, когда страница загружается полностью, пропадает, не знаю что делать помогите, думал проблема в фильтре а оказывается нет Link to comment Share on other sites More sharing options...
gabdr Posted October 28, 2011 Author Share Posted October 28, 2011 проблему решил, просто продублировал код, кому интересно смотрите product.tpl было <!-- number of item in stock --> {if ($display_qties == 1 && !$PS_CATALOG_MODE && $product->available_for_order)} <p id="pQuantityAvailable"{if $product->quantity <= 0} style="display: none;"{/if}> <span id="quantityAvailable">{$product->quantity|intval}</span> <span {if $product->quantity > 1} style="display: none;"{/if} id="quantityAvailableTxt">{l s='item in stock'}</span> <span {if $product->quantity == 1} style="display: none;"{/if} id="quantityAvailableTxtMultiple">{l s='items in stock'}</span> </p> {/if} стало <!-- number of item in stock --> {if ($display_qties == 1 && !$PS_CATALOG_MODE && $product->available_for_order)} <p id="pQuantityAvailable"{if $product->quantity <= 0} style="display: none;"{/if}> <span id="quantityAvailable">{$product->quantity|intval}</span> <span {if $product->quantity > 1} style="display: none;"{/if} id="quantityAvailableTxt">{l s='item in stock'}</span> <span {if $product->quantity == 1} style="display: none;"{/if} id="quantityAvailableTxtMultiple">{l s='items in stock'}</span> </p> {/if} {if ($product->quantity <= $last_qties OR isset($combination.list))} <p id="pQuantityAvailable"{if $display_qties != 1 OR $product->quantity <= 0 OR !$product->available_for_order OR $PS_CATALOG_MODE} style="display: none;"{/if}> <span id="quantityAvailable">{$product->quantity|intval}</span> <span {if $product->quantity > 1} style="display: none;"{/if} id="quantityAvailableTxt">{l s='item in stock'}</span> <span {if $product->quantity == 1} style="display: none;"{/if} id="quantityAvailableTxtMultiple">{l s='items in stock'}</span> </p> {/if} только проблема, когда товара нет в наличии не отображается Link to comment Share on other sites More sharing options...
gabdr Posted October 30, 2011 Author Share Posted October 30, 2011 как же все таки сделать, у меня не отображает когда товара "нет в наличии" в продукт.тпл и в продукт_лист.тпл всегда отображает " в наличии" даже если товара нет Link to comment Share on other sites More sharing options...
Recommended Posts