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

Querying Magento API in Go

I am building a service in Go that queries a Magento API. I already have the oauth credentials needed to make the request (these are persistent) and am able to successfully query the API in Postman. I am trying to…

VIEW QUESTION

Magento 2 Readiness Check

I have PHP Version 7.0.21 and working Magento 2 installed memory_limit= 2000M. However i get Readiness Check error: Your current PHP memory limit is 128M. Magento 2 requires it to be set to 756M or more. I have already changed…

VIEW QUESTION
Back To Top
Search