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 ?
Magento
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 […]
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', […]
getting 0 when using use MagentoAuthorizationModelUserContextInterface::getUserId() on the home page block in cms_index_index.xml layout file.
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 […]
facing issue to install magento 2.4.2 in sub directory – because in magento 2.4.2 and higher website root file is different than it was in magento 2.4.1 or lower (like 2.3). magento 2.4.2 or higher websites work from pub folder situation: upgraded to magento 2.4.2 from 2.3.7 => successful (as […]
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 model/data: <?php namespace CustomSalesRuleModelData; class CouponGenerationSpec extends MagentoSalesRuleModelDataCouponGenerationSpec { const […]