Je crée un nouveau module dans Magento 2. J'essaie d'obtenir des informations sur le produit dans le fichier phtml. J'ai réussi à obtenir les informations entity_id et nom du produit . mais lorsque j'obtiens des informations sur le type de produit, je me trompe. Le code suivant utilisé.
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$product = $objectManager->get('Magento\Framework\Registry')->registry('current_product'); //get current product
echo $product->getId() . '<br/>';
echo $product->getName() . '<br/>';
echo $product->getProductType() . '<br/>'; //getting wrong product type
Essaye ça :
la source