Matiescanales Posted July 11, 2013 Share Posted July 11, 2013 (edited) 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. Edited July 12, 2013 by Matiescanales (see edit history) Link to comment Share on other sites More sharing options...
Sergio Ruiz Posted July 11, 2013 Share Posted July 11, 2013 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. ¿Pero eso no se ve ya en la plantilla por defecto? Link to comment Share on other sites More sharing options...
Matiescanales Posted July 12, 2013 Author Share Posted July 12, 2013 ¿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 More sharing options...
nadie Posted July 12, 2013 Share Posted July 12, 2013 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*} 1 Link to comment Share on other sites More sharing options...
Matiescanales Posted July 12, 2013 Author Share Posted July 12, 2013 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 More sharing options...
nadie Posted July 12, 2013 Share Posted July 12, 2013 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 More sharing options...
Recommended Posts