Skip to content

xml

Auto Added by WPeMatico

Magento 2 : Customize New Products Rss Feed

Generally when we hit http://127.0.0.1/magento2/rss/feed/index/type/new_products/ Feed shows data in XML format like this : <rss xmlns:slash=”http://purl.org/rss/1.0/modules/slash/” version=”2.0″> <channel> <language>en_US</language> <title>New Products from Main Website Store</title> <description>New Products from Main Website Store</description> <generator>Laminas_Feed_Writer 2 (https://getlaminas.org)</generator> <link>http://127.0.0.1/magento2/rss/feed/index/store_id/1/type/new_products/</link> <item> <title>Simple Door</title> <description> <![CDATA[… Read More »Magento 2 : Customize New Products Rss Feed

Magento 2 how to show custom block before product.info.details and after media

Magento 2.3.5-p2 how to show custom block before product.info.details and after media ? <div class=”product-info-main”></div> <div class=”product media”></div> <div class=”custom_block”></div> **//we want to show custom block section here** <div class=”product info detailed”></div> I am trying like that <referenceContainer name=”main”> <container… Read More »Magento 2 how to show custom block before product.info.details and after media