Skip to content

magento man

Need to merge extra field in getJsonResponse result using custom plugin

public function aroundExecute(VendorApiControllerProductPage $subject, Closure $proceed) { $productId = $this->request->getParam(“productId”); $this->product = $this->productFactory->create()->load($productId); $title = $this->product->getData(‘title’); $extraInfo[‘title’] = $title; $this->returnArray[“extra”] = $extraInfo; return $this->returnArray; }

Magento 2 admin order creation error is “Pickup Location Address does not match Shipping Address for In-Store Pickup Quote”

When I try to create an “in-store pickup order” for a customer from magento 2.4.5 admin I am getting this error “Pickup Location Address does not match Shipping Address for In-Store Pickup Quote“. Can any one help me to fix… Read More »Magento 2 admin order creation error is “Pickup Location Address does not match Shipping Address for In-Store Pickup Quote”