Jump to content

"Solucionado" Mostrar en product list, stock de articulos disponibles


Matiescanales

Recommended Posts

Hola buenas tardes.

Alguien me puede ayudar, necesito mostrar la cantidad de articulos disponibles en mi product list.

 

Alguna sugerencia.

 

Quiero empezar a trabajar en este foro que me ha sacado de tantos aprietos...

 

Saudos Compañeros. :ph34r:

 

¿Pero eso no se ve ya en la plantilla por defecto?

Link to comment
Share on other sites

¿Pero eso no se ve ya en la plantilla por defecto?

 

Hola Rubalcaba:

Primero gracias por la respuesta...

Creo que no he formulado la pregunta correctamente, lo que quiero hacer es mostrar el stock disponible en el product list, no se esta disponible en la plantilla por defecto...

 

Lo buscaré

Gracias.

Link to comment
Share on other sites

Revisa ese enlace: http://www.prestasho...-default-theme/

 

Here is the code I added on Prestashop 1.5x at the same place

 

{*Added quantity in stock*}

<!-- availability -->

<p id="availability_statut"{if ($product.quantity <= 0 && !$product.available_later && $allow_oosp) OR ($product.quantity > 0 && !$product.available_now) OR !$product.available_for_order OR $PS_CATALOG_MODE} style="display: none;"{/if}>

<span id="availability_label">{l s='Availability:'}</span>

<span id="availability_value"{if $product.quantity <= 0} class="warning_inline"{/if}>

{if $product.quantity <= 0}{if $allow_oosp}{$product.available_later}{else}{l s='This product is no longer in stock'}{/if}{else}{$product.available_now}{/if}

</span>

</p>

 

<!-- 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*}

 

<!-- Out of stock hook -->

<p id="oosHook"{if $product.quantity > 0} style="display: none;"{/if}>

{$HOOK_PRODUCT_OOS}

</p>

 

<p class="warning_inline" id="last_quantities"{if ($product.quantity > $last_qties OR $product.quantity <= 0) OR $allow_oosp OR !$product.available_for_order OR $PS_CATALOG_MODE} style="display: none"{/if} >{l s='Warning: Last items in stock!'}</p>

{*End Added quantity in stock*}

  • Like 1
Link to comment
Share on other sites

Solucionado... Muchisimas gracias amigos :)

 

Codigo para Prestashop 1.5:

 

Here is the code I added on Prestashop 1.5x at the same place

 

{*Added quantity in stock*}

<!-- availability -->

<p id="availability_statut"{if ($product.quantity <= 0 && !$product.available_later && $allow_oosp) OR ($product.quantity > 0 && !$product.available_now) OR !$product.available_for_order OR $PS_CATALOG_MODE} style="display: none;"{/if}>

<span id="availability_label">{l s='Availability:'}</span>

<span id="availability_value"{if $product.quantity <= 0} class="warning_inline"{/if}>

{if $product.quantity <= 0}{if $allow_oosp}{$product.available_later}{else}{l s='This product is no longer in stock'}{/if}{else}{$product.available_now}{/if}

</span>

</p>

 

<!-- 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*}

 

<!-- Out of stock hook -->

<p id="oosHook"{if $product.quantity > 0} style="display: none;"{/if}>

{$HOOK_PRODUCT_OOS}

</p>

 

<p class="warning_inline" id="last_quantities"{if ($product.quantity > $last_qties OR $product.quantity <= 0) OR $allow_oosp OR !$product.available_for_order OR $PS_CATALOG_MODE} style="display: none"{/if} >{l s='Warning: Last items in stock!'}</p>

{*End Added quantity in stock*}

 

Gracias.

Link to comment
Share on other sites

Solucionado... Muchisimas gracias amigos :)

 

Un placer ayudarte y servirte!

 

Si das el tema como solucionado, edita el titulo del tema, editando el primer mensaje, pulsando en editar, y después en "Usar editor completo", añadiendo la palabra "Solucionado" al titulo, esto ayudara, a mantener una mayor organización en el foro.

 

Un saludo y recuerda que estaremos en el foro, para guiarte por este mundo oscuro y tenebroso.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...