Skip to content

Unable to override theme layout block

I am trying to override theme layout block. Layout is on path: app/design/frontend/Codazon/unlimited/default/Magento_Catalog/layout/catalog_category_view.xml Theme is adding its custom block in content container. <?xml version=”1.0″?> <page xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:framework:View/Layout/etc/page_configuration.xsd”> <body> <referenceContainer name=”content”> <block class=”MagentoFrameworkViewElementTemplate” name=”cdz-cat-layout-config” template=”Magento_Catalog::category/cat-layout-config.phtml” after=”-” /> </referenceContainer> </body> </page> Now,… Read More »Unable to override theme layout block

want to get the Customer password at the time of Registration

Is there any way we get the customer password but not hashed! I am trying this way but not getting <?php namespace VendorCustomerObserver; use MagentoFrameworkEventObserverInterface; use MagentoFrameworkEventObserver; use PsrLogLoggerInterface; class LogPassword implements ObserverInterface { protected $logger; public function __construct( LoggerInterface… Read More »want to get the Customer password at the time of Registration