How to implement mass redirects in Magento?

I am working on a large site migration where there are thousands of products that have had their URLs rewritten. For reference, the original site had their products listed as /product, regardless of the category, subcategory, ec. The same product on the new site is has its URL rewritten as /category/subcategory/product Is there a way …

Import related skus for configurable products

Shop-Version: Magento 2.4.3 I want to import related skus for configurable products. The csv file has the following heading: sku,related_skus This is working for simple products but when the sku is a configurable product, the import check shows an error that the product type is not supported. Do i have to use additional columns for …

How can we purchase/drop ship multiple items from different vendors and sell them as a kit on our website?

We have been using Netsuite for a couple of months now and we are having loads of problems on the inventory management side. TL;DR – How can we purchase/drop ship multiple items from different vendors and sell them as a kit on our website. Currently the purchasing process looks something like this: Customer wants kit …

Where to get Magento security alerts?

How are people getting real time security alerts related to Magento? Given what a pitiful, garbage experience Magento themselves have done alerting customers (note that the Magento Security Centerstill has no mention of the recent vulnerability, what other sites/services provide better updates? submitted by /u/william_o [link] [comments]

How to Configure Zero Subtotal Checkout in Magento 2

Hello, Magento Buddies!! When the total of a bill reaches zero, it is considered a zero subtotal checkout. The discount must be applied here in order for the discount to be applied. Zero subtotal checkout must be provided by the admin. Have a look at How to Configure Zero Subtotal Checkout in Magento 2. Complete …

How to Get Shipment Information Using SOAP API in Magento 2

Hello, Magento Buddies!! The courier service provider needs shipping information to deliver the package. Hence, whenever you need to fetch shipping information outside the Magento system, the SOAP API comes in handy. Deep dive into How to Get Shipment Information Using SOAP API in Magento 2. Complete Tutorial at How to Get Shipment Information Using …

[Question] How to get a survey script working in Magento 2 – Uncaught ReferenceError: Survey is not defined

We have this script from our marketing automation platform: <bento-survey-form id=”old-glade-12345″ type=”popup” delay=”5″></bento-survey-form> However after simply adding it into the header we get the error: Uncaught ReferenceError: Survey is not defined We tried fixing this by adding it via requirejs-config.js var config = { paths: { Survey: ‘V4U_BentoSurvey/js/survey.jquery.min’ }, shim: { Survey: { deps: [‘jquery’] …