I seem to be missing something when it comes to overriding controllers. This is a somewhat recurring question in here, but nothing I’ve found in other questions worked for me, so either they might be a bit outdated or I am missing something obvious. I am on Magento 2.3.4, trying […]
Magento
I’m trying to sort multi-select attributes by selected values at the top and alphabetical order shown in the admin product edit page. I tried using JS to sort alphabetical but didn’t succeed. Please check the screenshot below.
I have added a widget to a custom extension that includes a form. The form needs to have a Captcha on it. I cannot figure out what I am missing to get it to display on the form. The form opens in a modal that slides in from the right […]
Anyone know if its possible to add a column here like a dropdown for us to basically group these swatches (Attribute to be used for something else later on).
Currently the template is defined like this: <?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="CompanyPdfDesignModelCompanyDesign"> <arguments> <argument name="templateFiles" xsi:type="array"> <item name="extras" xsi:type="string">Company_PdfDesign::pdf/table/extras.phtml</item> </argument> </arguments> </type> </config> However, I want to make this dynamic and load it from the settings, so I tried to use a helper like seen here: <?xml version="1.0"?> […]
I need add an external iframe in product gallery, but my code is not working in product configurable. Thanks $(document).on('gallery:loaded', function () { var $fotorama = jQuery('div.gallery-placeholder > div.fotorama'); var fotorama = $fotorama.data('fotorama'); $fotorama.on('fotorama:load', function fotorama_onLoad(e, fotorama, extra) { if (extra.frame.type === 'iframe') { extra.frame.$stageFrame.html('<iframe align="middle" type="text/html" width="100%" height="100%" src="' […]
Magento 2.4.2-p1 Smartwave Porto theme extensions from Amasty including One Step Checkout We migrated from Magento 1.9.4 to Magento 2.4.2-p1 using the Magento Migration Tool. There have been few orders here and there but we have really gone down in order numbers – we had absolutely no orders from customers […]
I need to update the field “inventory_manage_stock” on several products. I’m not sure I can do that with a CSV import, because this attribute is not available for exports. Any idea to achieve this please ? Thanks
I would like to override core plugin method Core plugin path MagentoInventorySalesPluginStockStateCheckQuoteItemQtyPlugin.php In this file I would like to override aroundCheckQuoteItemQty() function and I refer all the related links solutions in magento.stackexchange.com but no luck in my di.xml file <type name="MagentoInventorySalesPluginStockStateCheckQuoteItemQtyPlugin"> <plugin name="check_quote_item_qty" disabled="true" /> <plugin name="vendor_name_check_quote_item_qty" type="VendorNameModelPluginStockStateCheckQuoteItemQtyPlugin" sortOrder="99" /> […]