New Products

Displaying 1 to 30 (of 617 products)
1054 - Unknown column 'final_retail' in 'order clause'

select p.*, pd.*, m.*, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price, p.products_quantity as in_stock, if(s.status, 1, 0) as is_special from products_description pd, products p left join manufacturers m on p.manufacturers_id = m.manufacturers_id left join specials s on p.products_id = s.products_id where p.manufacturers_id <> 285 and p.manufacturers_id <> 740 and p.products_status = '1' and p.products_id = pd.products_id and pd.language_id = '1' and pd.current_status_date > date_sub(NOW(), INTERVAL 1 MONTH) order by final_retail , pd.products_name limit 0, 30

[TEP STOP]