gusman126 Posted August 23, 2018 Share Posted August 23, 2018 Lo primero que debemos hacer es ir al fichero, donde xxx el nombre del thema instalado themes/xxxxxx/templates/catalog/_partials/product-details.tpl y editarlo, añadiendo al final del fichero y de todo el código el siguiente código personalizado <script> $totalstock = {$product.quantity}; $(document).on('click', ".input-group-btn-vertical",function() { cantidad = $("#quantity_wanted").val(); if(cantidad > $totalstock && cantidad > 1){ $("#quantity_wanted").val($totalstock); $(".add-to-cart").prop("disabled",true); } }); $("#quantity_wanted").keyup(function() { cantidad = $("#quantity_wanted").val(); if(cantidad > $totalstock && cantidad > 1){ $("#quantity_wanted").val($totalstock); } }); </script> Link to comment Share on other sites More sharing options...
nexxuseis Posted August 27, 2018 Share Posted August 27, 2018 Una duda. Dreamweaver me alerta que hay un error de sintaxis en esta linea $totalstock = {$product.quantity}; El código a pesar de la advertencia funciona. Link to comment Share on other sites More sharing options...
gusman126 Posted August 27, 2018 Author Share Posted August 27, 2018 hace 2 horas, nexxuseis dijo: Una duda. Dreamweaver me alerta que hay un error de sintaxis en esta linea $totalstock = {$product.quantity}; El código a pesar de la advertencia funciona. El dreamweaver ni caso, usa un editor de textos o de programacion preparado para tener librerias de php Brackets, EditPad Lite 7 .... o el Notepad ++ Link to comment Share on other sites More sharing options...
Adrian Posted February 27, 2020 Share Posted February 27, 2020 Esto sirve para sumar de 10 en 10? Por ejemplo 10, 20, 30... Y que 11,12,13,14... no se pueda comprar? 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