Jump to content

[SOLVED] PrestaShop product list and quantity field not working


Recommended Posts

Dear all,

i applied the tutorial explained on this page:

http://mypresta.eu/en/art/developer/prestashop-quantity-field-on-product-list.html

However, I have problem with Product-list.tpl
After applying changes, the quantity field does not appear and the add to cart button doesn't work any more. Where was I wrong?

 

Thank you

Stefano

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

oh dear it was my mistake, i don't know why but i thought that you want grid there :|

so sorry

 

 

In this case it will be necessary to modify block cart module .js file and modify one simple thing. So, please open file located in blockcart module directory. The file name is ajax-cart.js. Full path to this file: /modules/blockcart/ajax-cart.js or if exist, you have to modify this file in your theme directory (overriding feature).

 

So, in this file you can find code which looks like:

1
2
// add the picture to the cart
var $element = $(callerElement).parent().parent().find('a.product_image img,a.product_img_link img');

all that we have to do with this code is: add additional parent() code. This is the final code:

1
2
// add the picture to the cart
var $element = $(callerElement).parent().parent().parent().find('a.product_image img,a.product_img_link img');

 

in addition:

DDA9XKK.png

 

you need to decrease button width, because it overlapping quantity field:

8c4oqGc.png

Link to comment
Share on other sites

Dear vekia,

maybe I still have problems with the compilation (also in another modification of a .tpl file).

Is it possible that cache is still active if I put

- Cache template on force compilation
- Cache on No

 

my prestashop version is 1.5.6.1

 

thanks

 

Stefano

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...