TranceCode Posted January 18, 2018 Share Posted January 18, 2018 hola chicos tengo mi tienda web que trabajo pero con un problema, cambio y agrego una lista con mis acciones, pero cuando selecciono por ejemplo 13 productos de mi lista y presiono el botón agregar al carro solo agrego 1, puedo seleccionar 12, 9, o 20 producto, pero siempre agregue 1 producto :( este es mi sitio web http://tucan.bri.cl/everwines/shop/index.php?id_category=12&controller=category y este es mi código que agrego a la plantilla predeterminada de prestashop 1.7.2.3 Por favor, alguien me puede ayudar: D <!-- custom code --> <div class="clearfix atc_div"> <p id="quantity_wanted_p"{if (!$allow_oosp && $product.quantity <= 0) || !$product.available_for_order || $PS_CATALOG_MODE} style="display: block;"{/if}> <select name="qty_{$product.id_product|intval}" id="quantity_to_cart_{$product.id_product|intval}" class="form-control not_unifrom"> {section name=foo_q start=0 loop=$product.quantity step=1} <option value="{$smarty.section.foo_q.index + 1}">{$smarty.section.foo_q.index + 1}</option> {/section} {if $product.quantity_all_versions < 1} <option value="0">0</option> {/if} </select> </p> <!-- Condicion para deshabilitar boton si stock es cero --> {if ($product.allow_oosp || $product.quantity == 0 )} <div class="add"> <button class="btn btn-primary add-to-cart" data-button-action="add-to-cart" type="submit" disabled > <!-- <i class="material-icons shopping-cart"></i> --> <span class="add-text">{l s='Add to cart' d='Shop.Theme.Actions'}</span> <span class="psudo-icon"></span> <!-- Agregar --> </button> </div> {else} <button class="add_to_cart btn btn-primary btn-sm add-to-cart" onclick="mypresta_productListCart.add({literal}$(this){/literal});"> {* < i class="material-icons"> add_shopping_cart </ i>{l s='Add to cart' d='Shop.Theme.Actions'} *} <span class="add-text">{l s='Add to cart' d='Shop.Theme.Actions'}</span> <span class="psudo-icon"></span> {/if} <!-- Termina Condicion para deshabilitar boton si stock es cero --> <!-- fin custom code Testing--> 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