Using Magento 2 with Nginx/Varnish Issue: I can’t save category when using PageBuilder with MegaMenu. I get an infinite wheel saying Please wait… This is my Nginx config: location /static/ { if ($MAGE_MODE = "production") { expires max; } location ~ ^/static/version { rewrite ^/static/(versiond*/)?(.*)$ /static/$2 last; } location ~* […]
Magento
My Magento 2.4 isn’t caching requests I use many times, like storeConfig via PWA Studio. My request header: x-cache-hits: 0 How could I cache this kind of request to optimize the speed of my page loads?
In my stripe payment intent example, My code works fine with amount, currency and payment i can see received in stripe. please check my code below $paymentIntent = StripePaymentIntent::create([ 'amount' => $obj1, 'currency' => 'gbp', 'metadata' => [ 'order_id' => $invID, 'name' => $name, 'email' => $email, ], ]); But […]
We have recently turned on the Magento 2 profiler to try and track down our performance issues on the site. We can see that the magento->routers_match process is taking up a good bit of our load time. Now that we can see which processes are taking too long, what should […]
So I’m trying to install Magento 2.4.5-p1 on my local Windows 10 machine using xampp. I have installed elasticsearch and it runs fine when testing using the http://localhost:9200/ But when I come to install magento, I’m getting the error: “In SearchConfig.php line 81: Could not validate a connection to Elasticsearch. […]
thank you for reading me. Is there a way to modify a product´s custom attribute? I´m using postman, i use JSON POST for price and stock but i can´t find the way to update a custom attribute of a product. Can it be done inside: {{magento_site_path}}/rest/default/V1/products/{{sku}} ? What would be […]
I want to populate the options of a multi select in my attribute products with an array of value in a admin config, This is posible?… I know the possibility to do it with a installData but the problem is the options can be changed in a admin configuration with […]
I want to make a function where users can search for the address from the shipping address list at the checkout page. Right now there are many B2B Magento stores globally. So Might they have a huge customer list and might those customers have multiple shipping addresses (Multiple Vendor Stores). […]
Hello I have a problem with my admin page, I have the connection chart but just after I have a blank page and nothing helps I can’t find a solution I tried everything as per example this: In vendormagentoframeworkViewElementTemplateFileValidator.php inside this function, I modified the following line… $realPath = $this->fileDriver->getRealPath($path); […]