How to create a new product type in magento2
up vote
2
down vote
favorite
1
I have created new product type in magento2 using https://www.classyllama.com/blog/custom-product-types-magento-2. After the i can't see any product info in view page.. It only display the Images tab in view page.. product_type.xml <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Catalog:etc/product_types.xsd"> <type name="custom_product_type_code" label="Custom Product Type Label" modelInstance="XXXCustomiseProductInfoModelProductType" indexPriority="60" sortOrder="80" isQty="true"> </type> </config> Type.php class Type extends MagentoCatalogModelProductTypeAbstra...