I’m looking for a possibility in the catalog to display the item prices gross for non-registered and standard users, and net for the dealer customer group. Is there any way at all? Best regards
Magento
We have added some additional sortable / filterable columns to sales order grid using some basic joins. This would be the relevant code regarding data app/code/Vendor/Module/etc/di.xml <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <type name="MagentoFrameworkViewElementUiComponentDataProviderCollectionFactory"> <arguments> <argument name="collections" xsi:type="array"> <item name="sales_order_grid_data_source" xsi:type="string">VendorModuleModelResourceModelOrderGridCollection</item> </argument> </arguments> </type> <type name="SinapsisOrderGridModelResourceModelOrderGridCollection"> <arguments> <argument name="mainTable" xsi:type="string">sales_order_grid</argument> <argument […]
I’m new in magento 2, my question is how to send parameters with results responses to another url whenever i click “Place Order” and before proceeding to success page. Using event and Observer. Please help. Thank you in advance.
Using default order create rest API one issue was face, when order create using postman/curl than it will success and working fine but when same API hit using mobile app it causes issue like – base currency was USD and place order using another currency like -CAD,EUR order created and […]
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 […]
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 ~* […]
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?
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. […]