Johann
Johann

Reputation: 21

Prestashop fatal error on products list page

I suddenly had this issue on my Prestashop project. When I'm opening the products list page, I have a blank page with this message :

Fatal error: Call to undefined method Product::getProductsImgs()...product-list.tpl.php on line 76

The error line : {$more_imgs = Product::getProductsImgs($product.id_product)}

Upvotes: 0

Views: 1181

Answers (2)

zhenming
zhenming

Reputation: 1089

You may want to check the following:

Advanced parameters > performance > debug mode > disable all overrides

check if it is set to no.

Upvotes: 1

user1994082
user1994082

Reputation: 25

Check The following points first.. 1) Did you try to modify the controller? 2) Did you add any custom code to product-list.tpl? if yes post it and also a few lines above and below the line mentioned.. Call to undefined method means you don't have the file with the method referenced..

Upvotes: 0

Related Questions