theoden LiteCart Fan Od France Člen od jan 2015 theoden 8 aug 2017 10:11 Hi TIM. After updating yesterday with latest commit, I've emptied the cache. And in a product page, I've just seen an error I didn't notice before Error reported on my shop on line 19 'keywords' => explode(',', $product->keywords), Of course I've got keywords for each product, keywords separated by a coma. This line should work. I don't understand. I replaced the line by 'keywords' => $product->keywords, so the error is no more visible. Question: are keywords useful here ?
tim Founder Od Sweden Člen od máj 2013 tim 11 aug 2017 02:37 I had not pushed the fix yet. But here it is, for box_similar_products.inc.php: Find 'keywords' => explode(',', $product->keywords), Replace with 'keywords' => $product->keywords, Yes keywords can be useful, but are optional. I appreciate the feedback.
theoden LiteCart Fan Od France Člen od jan 2015 theoden 11 aug 2017 09:36 Hi TiM. I've already got this fix. Thanx for your update !