Jump to content

Button for add products


Recommended Posts

Hello,

I need help with js on prestashop 1.7.

I want to create a button in product page that updates the number of products selected.

For example:

image.png.b70d4ecb703b3ec14c4165d94d21392c.png

If I press red button, quantity_wanted box change to 5:

image.png.4d829ed0c24e948d8b1787933b804c5d.png

How to do that?

I suppose I need to modify /theme/_dev/js/product.js

with something like that:

$(document).ready(function(){

$('.qty_five').on('click',function(){

$('#quantity_wanted').val(parseInt($('#quantity_wanted').val())+4);

});

The problem is JS doesn't work.

Any idea?

I need first steps to begin.

Thanks!

 

 

Edited by zell9999 (see edit history)
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...