skip to Main Content

How do I override footer copyright text in magento 2?

I want to customize MagentoThemeBlockHtmlFooter class using custom module. Output: Hello World! di.xml: <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <type name="MagentoThemeBlockHtmlFooter"> <plugin name="footer-text-override" type="HelloTestPluginFooter" sortOrder="15" /> </type> </config> Footer.php <?php namespace HelloTestPlugin; use MagentoFrameworkViewElementTemplate; class Footer extends MagentoThemeBlockHtmlFooter { public function…

VIEW QUESTION

Pass array to requirejs shim – Magento

I am trying to get constant contacts script to work with magento 2 requirejs. (I tried adding it inline but it conflicts and causes errors) Their script requires an array localizedErrMap and jQuery object. I created localizedErrMap.js define([], function(){ var…

VIEW QUESTION
Back To Top
Search