Magento – Display product video in product description tab

magento2product-view

I am using magento 2.0.7 and I want to display the product video/image and product description (in product description tab) in view page.

Best Answer

simply render that block and template in detail tab

Add the below line in <magento-root>/app/design/frontend/Vendor/Theme_name/Magento_Catalog/templates/product/view/attribute.phtml before end of div tag

<?php echo $this->getLayout()->createBlock("Magento\Catalog\Block\Product\View\Gallery")->setTemplate("Magento_Catalog::product/view/gallery.phtml")->toHtml(); ?>

The output is look like below may be your styling get different because I do some LESS work for my image view. easy for your reference

Related Topic