Page 1 of 1

PrestaShop 1.5.4 bug - tag search issue

PostPosted: Fri Mar 29, 2013 5:45 pm
by shokinro
Today I just tried the newly released PrestaShop 1.5.4.0, and found a bug in Tag search. If you click any tag in the Tag cloud block, you'll see an SQL error message. This issue seems to stem from the changes in 1.5.4.0, it does not happen in PrestaShop 1.5.3 and earlier versions.

If you're using/upgrading to version 1.5.4.0, you may see the following message:

Unknown column 'product_shop.id_image' in 'group statement'


If you do, then to fix this problem, change line #660 as follows.

From:

Code: Select all
               GROUP BY product_shop.id_image


To:

Code: Select all
               GROUP BY product_shop.id_product


Hope this helps..