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…