I am running version 1.3.8a. I upgraded from 1.3.0. I have a mod Products with Attributes Stock.
I have pages that show products in a category, for example Halloween shows all my Halloween related products. On the 1.3.0 install this worked fine, but on my 1.3.8a install every product display is doubled. These products have different Item Numbers. In my debugging I've found that the correct install has this partial WHERE clause:
AND p.products_model LIKE 'B%' AND p.products_model LIKE 'B%' AND p.products_model LIKE 'B%'Code:p.products_status = 1 and p.products_id = p2c.products_id and pd.products_id = p2c.products_id and pd.language_id = '1' and p2c.categories_id = '16' AND p.products_model LIKE 'B%' AND p.products_model LIKE 'B%' AND p.products_model LIKE 'B%' order by p.products_sort_order, pd.products_name limit 0, 6
while on the incorrect install I have this partial WHERE clause(No LIKE filtering):
My question, is there an admin setting or is there a PHP file I need to update/modify so that the LIKE section is added to the updated 1.3.8a install?Code:p.products_status = 1 and p.products_id = p2c.products_id and pd.products_id = p2c.products_id and pd.language_id = '1' and p2c.categories_id = '16' order by p.products_sort_order, pd.products_name limit 0, 6




