In this post I am going to explain how to get product manufacturer details by product id in PrestaShop 1.7. // Your product id $id_product = 10; // Language id $id_lang = (int) Configuration::get(‘PS_LANG_DEFAULT’); // Load product object $product = new Product($id_product, false, $id_lang); // Validate product object if (Validate::isLoadedObject($product)) { // Get product manufacturer…


Recent Comments