antonb Posted November 4, 2014 Share Posted November 4, 2014 (edited) Добрый день. Подскажите, как сделать неограниченное количество запасов товара. То есть мне не нужно вписывать сколько у меня данного товра на складе. Или же подскажите как убрать строку в описании товара с остатками товара? А также подскажите как убрать строку Состояния товара с того ж описания? Edited November 4, 2014 by antonb (see edit history) Link to comment Share on other sites More sharing options...
amwaykem Posted November 5, 2014 Share Posted November 5, 2014 Чтобы убрать строку состояние со страницы продукта. 1. Открываешь файл "themes/<ваш шаблон>/product.tpl" 2. ищем <{if $product->condition} <p id="product_condition"> <label>{l s='Condition'} </label> {if $product->condition == 'new'} <link itemprop="itemCondition" href="http://schema.org/NewCondition"/> <span class="editable">{l s='New'}</span> {elseif $product->condition == 'used'} <link itemprop="itemCondition" href="http://schema.org/UsedCondition"/> <span class="editable">{l s='Used'}</span> {elseif $product->condition == 'refurbished'} <link itemprop="itemCondition" href="http://schema.org/RefurbishedCondition"/> <span class="editable">{l s='Refurbished'}</span> {/if} </p> {/if}> 3. меняем на <!--{if $product->condition} <p id="product_condition"> <label>{l s='Condition'} </label> {if $product->condition == 'new'} <link itemprop="itemCondition" href="http://schema.org/NewCondition"/> <span class="editable">{l s='New'}</span> {elseif $product->condition == 'used'} <link itemprop="itemCondition" href="http://schema.org/UsedCondition"/> <span class="editable">{l s='Used'}</span> {elseif $product->condition == 'refurbished'} <link itemprop="itemCondition" href="http://schema.org/RefurbishedCondition"/> <span class="editable">{l s='Refurbished'}</span> {/if} </p> {/if}--> Link to comment Share on other sites More sharing options...
antonb Posted November 5, 2014 Author Share Posted November 5, 2014 Спасибо. Помогло Link to comment Share on other sites More sharing options...
amwaykem Posted November 6, 2014 Share Posted November 6, 2014 Если вам не требуется отображения остатков, то можно также поступить как и с состоянием товара. В том же файле "product.tpl" ищем: {if ($display_qties == 1 && !$PS_CATALOG_MODE && $PS_STOCK_MANAGEMENT && $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'}</span> <span {if $product->quantity == 1} style="display: none;"{/if} id="quantityAvailableTxtMultiple">{l s='Items'}</span> </p> {/if} и меняем на: <!--{if ($display_qties == 1 && !$PS_CATALOG_MODE && $PS_STOCK_MANAGEMENT && $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'}</span> <span {if $product->quantity == 1} style="display: none;"{/if} id="quantityAvailableTxtMultiple">{l s='Items'}</span> </p> {/if}--> этим действием мы убираем отображение остатков на странице продукта Link to comment Share on other sites More sharing options...
antonb Posted November 6, 2014 Author Share Posted November 6, 2014 Большое спасибо за подсказку. Я убрал остатки товара по другому. В админ. панели: Настройки товара - Не показывать количество товара. Link to comment Share on other sites More sharing options...
amwaykem Posted November 6, 2014 Share Posted November 6, 2014 Рад был помочь) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now