There’s two created product each of them is set: Product Type : Simple Website : Main Websites Status : Enabled Visibility: Catalog, Search Salable Quantity: >50 I use Magento 2.4.4 Open source installed on localhost through Xampp at Windows PC. It is a bit strange that left column containing filters […]
Magento
I have created a custom dynamic row in the customer information tab. but it is not saving data in the table.
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 this issue ?
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; }
I just applied the GraphQL cache in my PWA Studio custom queries. I’m not sure if the cache is working, should the x-cache-hits be enough to validate? How does it work behind the scenes?
I have the following script which i need to add the product brand/manufacturer and SKU <script> window.addEventListener('liveload', function() { IcecatLive.getDatasheet( { 'reasonstobuy':'#Container5', }, { Brand: **$manufacturer**, PartCode: **$sku**, UserName: 'myusername' }, 'en') }); </script> I have added custom.phtml in web/magento/app/design/frontend/MyTemplate/default/Magento_Catalog/templates/product/view which contains <?php $_product = $this->getProduct(); /* YOU CAN GET […]
Is there a way to speed up layered navigation filters on Magento 2.3.4? Filters with a lot of products are taking too long to load. Any help would be appreciated.
I updated magento to 2.4.6 and PHP 8.2 and When I run any comment in Magento (i.e php bin/magento cache:flush or php bin/magento cache:clean) I get this error on the console: There is an error in /var/www/magento2/vendor/magento/framework/App/ErrorHandler.php at line: 62 Deprecated Functionality: Using ${var} in strings is deprecated, use {$var} […]
I’m currently using the following endpoint to retrieve the last 50 orders: /rest/V1/orders/?searchCriteria[sortOrders][0][field]=created_at&searchCriteria[pageSize]=50 However, I’ve noticed that the product attribute “searchable_sku” is missing from the response for the products within the orders. How can I modify the API response to include this attribute?