on click system configuration open tab not working
on this i faced this issue, on click system configuration open tab but after click other tab magneto admin click not working i can not able click any where enter link description here
Auto Added by WPeMatico
on this i faced this issue, on click system configuration open tab but after click other tab magneto admin click not working i can not able click any where enter link description here
I have a problem with the page builder on my custom module. In the adminhtml, everything is working fine, and my code propeller is saved to DB, but when I’m trying “echo” my code, the widget isn’t displayed. I can… Read More »Magento2 Custom Page Builder, doesn’t render widgets on frontend
I’m trying to add an extra fee to the order when the payment method is Cash on delivery and the shipping country is Greece. I have created the following files: app/code/HectorCustom/CodFee/registration.php MagentoFrameworkComponentComponentRegistrar::register( MagentoFrameworkComponentComponentRegistrar::MODULE, ‘HectorCustom_CodFee’, __DIR__ ); app/code/HectorCustom/CodFee/Observer/AddCodFee.php namespace HectorCustomCodFeeObserver; use… Read More »Add fee to Payment method
After I updated my Magento I got this error and it caused some issues like Ad to cart etc. An error message is: #130 {main} {“exception”:”[object] (Error(code: 0): Call to a member function isSaleable() on null at /chroot/home/ab140e0b/6e29c5a329.nxcli.io/html/app/code/KraftMedia/GroupedProduct/view/frontend/templates/product/view/addtocart.phtml:7)”} [] The… Read More »Call to a member function isSaleable error
Is there a way or a program etc that can help to change products on 50k products in an easier way than Excel or do it one by one in Admin? Thanks,
I’m using Magento 2.4.7-p1 and I’m trying to show programmatically a customer block on the success page from my module but without success. The module seems correctly enabled and registered but the custom block is not shown. No other info… Read More »How to show custom block on success page programmatically
I’m trying to create a module which adds 2 fields in bundle option. I’ve already managed to add 2 field: But it doesn’t save values in my database. Columns are crated but it doesn’t fill with right value. Here is… Read More »Magento2 add 2 new field in bundle item option selection
My current requirement is to use AWS SES to send emails from my Magento(2.4.7) project. Since AWS also requires the from email which is a verified identity on SES itself. When i tried to configure that in Stores->Configuration->Advanced->System->Mail Sending System… Read More »Automatically set From Email and Name before sending an Email from Magento
I am facing issue to create module. I created one module and I given apply to system admin to enable disable. So, Right now I am doing module hide/show using below code. $objectManager = MagentoFrameworkAppObjectManager::getInstance(); $module_enable = $objectManager->get(‘MagentoFrameworkAppConfigScopeConfigInterface’)->getValue(‘magefilter/magefilter/enable’); if(isset($module_enable) &&… Read More »Magento 2 How to disable module using xml file?
i need problem with extension interface in magento2. Mi extension_attributes.xml: <config xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:framework:Api/etc/extension_attributes.xsd”> <extension_attributes for=”MagentoSalesRuleApiDataCouponGenerationSpecInterface”> <attribute code=”specific” type=”string” /> </extension_attributes> </config> Mi di.xml <preference for=”MagentoSalesRuleBlockAdminhtmlPromoQuoteEditTabCouponsForm” type=”CustomSalesRuleBlockAdminhtmlPromoQuoteEditTabCouponsForm” /> <preference for=”MagentoSalesRuleHelperCoupon” type=”CustomSalesRuleHelperCoupon”/> <preference for=”MagentoSalesRuleModelServiceCouponManagementService” type=”CustomSalesRuleModelServiceCouponManagementService”/> <preference for=”MagentoSalesRuleModelCouponMassgenerator” type=”CustomSalesRuleModelCouponMassgenerator”/> <preference for=”MagentoSalesRuleModelDataCouponGenerationSpec” type=”CustomSalesRuleModelDataCouponGenerationSpec”/> Mi… Read More »Fail to override interface module in magento2