Category Archives: Magento 2

Magento 2 is a powerful open-source eCommerce platform used to build online stores. It’s the successor to Magento 1, offering improved performance, scalability, and modern architecture.

FedEx / UPS Shipping Plugin settings

See below details for each setting options for FedEx / UPS Shipping Carrier Rest API Plugin: https://magento2.ecomplugins.com/admin/admin/system_config/edit/section/carriers/ Enabled:  If you want to enable plugin for checkout. Frontend Enabled: If you want to enable for frontend customer checkout. If set as “No” then shipping rates will display only for admin order creation. Enabled for RMA: If… Read More »

How to prevent magento create order with such a potentially harmful or malformed billing address

The placeholder {{var this.getTemp%00lateFilter().filter(firstname)}} in Magento indicates an attempted injection attack or a misconfiguration. To prevent Magento from creating orders with such a potentially harmful or malformed billing address, you can implement several security measures: 1. Input Validation and Sanitization: Validate User Input: Ensure that all user inputs, including billing addresses, are validated. This means… Read More »

Magento 2 how to create shipment from different shipping method than customer ordered shipping method.

To create a shipment with a different shipping method than the one originally ordered, and allow selection from a dropdown of all available shipping methods, you need to customize the Magento 2 admin panel and extend its functionality. Here is a step-by-step guide to achieve this: Step 1: Create a Custom Module Assuming you have… Read More »

What is benefit of fedex multiple packages shipment and magento 2 integration

Integrating FedEx Multiple Packages Shipment with Magento 2 offers numerous benefits, particularly for businesses that regularly ship multiple packages. Here are some of the key advantages: 1. Streamlined Shipping Process Batch Processing: Allows businesses to process multiple shipments at once, saving time and reducing manual effort. Centralized Management: Manage all shipping activities from within the… Read More »

Labelary ZPL API with Magento 2 with FedEx API

Integrating the Labelary ZPL API with Magento 2 and FedEx API for generating and printing ZPL shipping labels involves several steps. Here’s a detailed guide: Step 1: Set Up Your Magento 2 Module Create Module Directory Structure: app/code/YourVendor/FedExLabel/ Define the module.xml: <!– app/code/YourVendor/FedExLabel/etc/module.xml –> <config xmlns:xsi=”https://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:framework:Module/etc/module.xsd”> <module name=”YourVendor_FedExLabel” setup_version=”1.0.0″/> </config> Register the Module: //… Read More »