is elasticsearch required for magento newest versions to work. I am having a hard time finding the answer and hosting sites do not support it for shared plans. I am trying to do an eCommerce store so IDK if I even need it, plus know nothing about web development. I […]
Magento
I have removed a bunch of discontinued products (simple products) through CSV. Most configurable products still have a few simple products attached to it. However, for some, literally all simple products have been removed. I’m looking for a way to generate a list of all configurable product sku’s, that do […]
How we create a new Commerce Provider in the next js e-commerce for magento 2. How I connect that provider into e-commerce
I would like to change the order of fields when a customer adds an address or edits an existing one in the address book. Eg: I would like the zip-code field to be ordered before the city field. Previously I had already handled this by copying the contents from magento-customer/view/frontend/templates/form/edit.phtml […]
Is there a way to bypass the billing address when buying something online. I have been ask of my billing address and I don’t know how to get it to them.
After Migrating from Magento 1 to Magento 2.4.3 Community Edition the product_id row in the sales_order_item table is incorrect because the product ids are different to Mageto 1. (I imported the products with a CSV that’s why the ids are different) Is it somehow possible to “fix” the table with […]
I have a multi-vendor setup on my site and based on per vendor products, I want to apply a watermark. By default, Magento applies watermarks on all the products based on the website/ store. Can anyone tell me how to customize the watermark functionality or point me which file I […]
I want view a list of invoices in my mogento module. The data has successfully loaded, but the loading spinner never disappear. Magento version: 2.4.3 OS version: Ubuntu 20.04 LTS
I have a custom totals collector, which removes the VAT for exempt items. Here is the code: app/code/Innox/VatExemption/etc/sales.xml <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Sales:etc/sales.xsd"> <section name="quote"> <group name="totals"> <item name="tax_subtotal" instance="VendorModuleModelSalesTotalQuoteSubtotal" sort_order="600"/> </group> </section> </config> app/code/Vendor/Module/Model/Sales/Total/Quote/Subtotal.php <?php namespace VendorModuleModelSalesTotalQuote; use VendorModuleHelperData as ExemptionHelper; use MagentoCustomerApiDataAddressInterfaceFactory as CustomerAddressFactory; use MagentoCustomerApiDataRegionInterfaceFactory as CustomerAddressRegionFactory; […]