Acer Posted April 22, 2020 Posted April 22, 2020 Hi there I added a special price to a product (worked before) and suddenly I'm getting the error below: In classes/Link.php 155: if (!is_object($product)) { 156: if (is_array($product) && isset($product['id_product'])) { 157: $product = new Product($product['id_product'], false, $idLang, $idShop); 158: } elseif ((int) $product) { 159: $product = new Product((int) $product, false, $idLang, $idShop); 160: } else {161: throw new PrestaShopException('Invalid product vars'); 162: } 163: } What I don't get is that it worked before, and removing the special price did not resolve the error. Please help. Your help is appreciated
AndyC Posted April 23, 2020 Posted April 23, 2020 (edited) Have you asked on the Panda forum. Also have you tried googling I see there are quite a few Edited April 23, 2020 by AndyC
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now