helena5 Posted June 27, 2014 Share Posted June 27, 2014 hola, tengo productos con distintas tallas, de unas tengo stock y de otros no. Si pongo alguno de los stocks a cero, me sale ese letrero: "Producto disponible con otras opciones" desde la pagina principal. No quiero que salga ese cartel, porque parece que no hay ninguna talla en stock. No se como quitarlo, yo no quiero que salga nada, simplemente que la gente cuando entre busque su talla y si no hay que ponga que no queda esa talla y si hay que salga que si hay. ¿alguien me puede ayudar? gracias! helena. Link to comment Share on other sites More sharing options...
ditolas Posted June 27, 2014 Share Posted June 27, 2014 Prueba con ponerle display:none; en el css o quitalo del propio product.tpl Link to comment Share on other sites More sharing options...
helena5 Posted June 27, 2014 Author Share Posted June 27, 2014 hola, gracias por la respuesta... pero soy muy novata en esto y no te entiendo, me puedes especificar mejor donde esta eso por favor? gracias! Link to comment Share on other sites More sharing options...
ditolas Posted June 27, 2014 Share Posted June 27, 2014 Puedes usar el firebug ,herramienta muy util ,para ver en que css esta lo que buscas .esta en product.css #availability_statut #availability_value.warning_inline { background-color: #fe9126; border-color: #e4752b; text-shadow: 1px 1px #e68322; margin: 0; } añadele display:none; y listo sino como te decía en el fichero product.tpl busca esto <!-- availability --> <p id="availability_statut"{if ($product->quantity <= 0 && !$product->available_later && $allow_oosp) || ($product->quantity > 0 && !$product->available_now) || !$product->available_for_order || $PS_CATALOG_MODE} style="display: none;"{/if}> {*<span id="availability_label">{l s='Availability:'}</span>*} esto es lo que tienes que borrar <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> hasta aqui </p> <p class="warning_inline" id="last_quantities"{if ($product->quantity > $last_qties || $product->quantity <= 0) || $allow_oosp || !$product->available_for_order || $PS_CATALOG_MODE} style="display: none"{/if} >{l s='Warning: Last items in stock!'}</p> Link to comment Share on other sites More sharing options...
helena5 Posted June 29, 2014 Author Share Posted June 29, 2014 ok! muchas gracias, voy a ver si lo consigo.. H. Link to comment Share on other sites More sharing options...
Recommended Posts