skip to Main Content

Install Magento 2.1 with MariaDB

Current system installed is using MySQL, going forward we decided to move from MySQL to MariaDB. MySQL service has been stopped and created new DB using HeidiSQL which comes after MariaDB installation. Now while installing Magento 2.1, I am facing…

VIEW QUESTION

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
Back To Top
Search