Jump to content

Вывод наличие товара / режим каталога


Recommended Posts

Здравствуйте, подскажите кто знает))

 

как в режиме каталога в карточке товара вывести его наличие?

На складе - Нет на складе или цифровое значение как в режиме магазина.

Заранее спасибо!

Link to comment
Share on other sites

В шаблоне product-list.tpl

надо переписать вот эту часть

{if (!$PS_CATALOG_MODE AND ((isset($product.show_price) && $product.show_price) || (isset($product.available_for_order) && $product.available_for_order)))}
   <div class="content_price">
 {if isset($product.show_price) && $product.show_price && !isset($restricted_country_mode)}<span class="price" style="display: inline;">{if !$priceDisplay}{convertPrice price=$product.price}{else}{convertPrice price=$product.price_tax_exc}{/if}</span><br />{/if}
 {if isset($product.available_for_order) && $product.available_for_order && !isset($restricted_country_mode)}

  {if ($product.allow_oosp || $product.quantity > 0)}
   <span class="availability">{l s='Available'}</span>
  {elseif (isset($product.quantity_all_versions) && $product.quantity_all_versions > 0)}
   <span class="availability">{l s='Product available with different options'}</span>
  {else}
   <span class="NotAvailability">{l s='Out of stock'}</span>
  {/if}
 {else}
   <span class="NotAvailability">{l s='Out of stock'}</span>
 {/if}
   </div>
   {/if}

Link to comment
Share on other sites

чтобы выводилось цифровое значение нужно переписывать код, а так можно включить в админке отображение в наличии и не вналичии и настроить в языках текст

 

если делать в продукт, то настраивается в админке карточке товаров

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...