I need some way to know what method the magmi is set to to make a plugin, I mean by method (edit/create or whatever it is)
Magento
I have an issue with the meta tag in Magento 2. Where in admin I can add Facebook or any social media meta tag or key?
My hosting provider send me mail regarding patch installation on my store, but I want to know that how can I install this patch on my store, Adobe does not provide any kind of documentation regarding this : https://helpx.adobe.com/security/products/magento/apsb24-18.html Can anyone help me about this ?
I know it is possible to change it in php.ini or .user.ini and such, but is it possible to rename the default session cookie name PHPSESSID to something else on the application level? EDIT: If yes, how?
Currently the Tax Exempt application from the Admin side has no option for a streamlined rejection process, is just a Y or N switch. Is it possible to have a rejection flow where a template goes out inviting someone to re-apply or else, all from Magento? Rejections when a customer […]
getting 0 when using use MagentoAuthorizationModelUserContextInterface::getUserId() on the home page block in cms_index_index.xml layout file.
How can I use a custom widget function in a magento jquery widget? requirejs-config.js var config = { "map": { "*": { "customwidget": "Vendor_Module/js/customwidget", "Magento_Catalog/js/catalog-add-to-cart": "Vendor_Module/js/catalog-add-to-cart" } } }; catalog-add-to-cart.js define([ 'jquery', 'mage/translate', 'underscore', 'Magento_Catalog/js/product/view/product-ids-resolver', 'Magento_Catalog/js/product/view/product-info-resolver', 'Vendor_Module/js/customwidget', 'jquery-ui-modules/widget' ], function ($, $t, _, idsResolver, productInfoResolver, customwidget) { 'use strict'; $.widget('mage.catalogAddToCart', […]
I’d like to replace the error message in this magento core function. vendor/magento/module-inventory-sales/Model/IsProductSalableCondition/BackOrderNotifyCustomerCondition.php public function execute(string $sku, int $stockId, float $requestedQty): ProductSalableResultInterface { $stockItemConfiguration = $this->getStockItemConfiguration->execute($sku, $stockId); if ($stockItemConfiguration->isManageStock() && $stockItemConfiguration->getBackorders() === StockItemConfigurationInterface::BACKORDERS_YES_NOTIFY ) { $stockItemData = $this->getStockItemData->execute($sku, $stockId); if (null === $stockItemData) { return $this->productSalableResultFactory->create(['errors' => []]); } $salableQty […]
I’m trying to add a captcha to a custom form that I created in a CMS page in Magento. The captcha is working correctly on the default Contact Us page, but it’s not refreshing every time on my custom form. Here’s how I’m currently calling the captcha block in my […]