Skip to content

magento man

Unable to Unserilize the values in phtml Magento2

I have added a blockfunction in (vendormoduleBlockDealz) as public function __construct ( MagentoFrameworkSerializeSerializerInterface $serializer ) { $this->serializer = $serializer; } public function unSerialize($link) { return $this->serializer->unserialize($link); } After that called the function in banner.phtml as $blockData = $block->getBlockData(); <?php foreach… Read More »Unable to Unserilize the values in phtml Magento2

How to disable Magento_JwtUserToken

I want to disable Magento_JwtUserToken Module but it is showing following error bin/magento module:disable Magento_JwtUserToken Unable to change status of modules because of the following constraints: Cannot disable Magento_JwtUserToken because modules depend on it: Magento_AdobeStockAdminUi: Magento_AdobeStockAdminUi->Magento_AdminAdobeIms->Magento_JwtUserToken Magento_AdminAdobeIms: Magento_AdminAdobeIms->Magento_JwtUserToken I want… Read More »How to disable Magento_JwtUserToken

Magento 2. How to create a new step in ‘Shipping Method’ with the help of a module

I’m trying to add another step, I’ve followed example instructions, but it doesn’t work for me, I don’t understand what structure it should have apart from the files: checkout-login-step.js: app/code/module/name/view/frontend/web/js/view/checkout-login-step.js, check-login.html: app/code/module/name/view/frontend/web/template/check-login.html, checkout_index_index.xml: app/code/module/name/view/frontend/layout/checkout_index_index.xml I added the registry file and… Read More »Magento 2. How to create a new step in ‘Shipping Method’ with the help of a module