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.

What is Fedex Electronic Trade documents and how to use in Magento 2 fedex shipping extensions.

What is FedEx Electronic Trade Documents (ETD)? FedEx ETD (Electronic Trade Documents) allows shippers to electronically submit international shipping paperwork — like Commercial Invoices, Certificates of Origin, and other required customs documents — rather than printing and attaching them to shipments. This streamlines international shipping, reduces errors, speeds up customs clearance, and helps avoid document… Read More »

Magento 2 FedEx module support HAL (Hold at location) and FDM (FedEx Delivery Manager)

To offer Hold at Location (HAL) and FedEx Delivery Manager (FDM) options to your customers in Magento 2, you can consider the following approaches: 1. Hold at Location (HAL): Magento 2 does not natively support FedEx’s Hold at Location service. However, you can integrate this feature using third-party extensions or services: ShipperHQ Integration: ShipperHQ provides… Read More »

How to setup Rest API USPS App with client id and secret process

As part of our overall effort to migrate our on-prem API environment to the cloud, beginning January 6th, 2025, the USPS API Developer Portal account registration process has moved to the Cloud USPS Developer Portal, with the exception noted below. Exception: If you are using a 3rd-party software or plug-in and have been directed here by your provider to create an App, please submit your request via the App Creation Form. A USPS representative will… Read More »

Magento 2 Store pickup shipping method selection then calculate order tax based on store origin address automatically on checkout page

To achieve the functionality of calculating order tax based on the store origin address when the “Store Pickup” shipping method is selected in Magento 2, you can follow these steps: 1. Configure Store Pickup Shipping Method Magento 2 doesn’t have a built-in “Store Pickup” method by default, so you’ll need to: Install a third-party extension… Read More »

Magento 2 GraphQL example to read products data

In Magento 2, GraphQL can be used to fetch product data through the GraphQL API. Here’s an example query and explanation for retrieving product information like name, price, SKU, and description. GraphQL Query to Fetch Products { products( search: “shirt”, pageSize: 10, currentPage: 1 ) { items { id sku name description { html }… Read More »

How to create Bigcommerce shipping plugin to get online rates from FedEx / UPS / USPS

Creating a BigCommerce shipping plugin to get real-time rates from FedEx, UPS, or USPS requires integration with their respective APIs and implementing the plugin within BigCommerce’s ecosystem. Here’s a step-by-step guide to help you: 1. Understand BigCommerce and Carrier APIs BigCommerce Developer Documentation Familiarize yourself with BigCommerce’s APIs and webhooks: BigCommerce Developer Documentation Carrier APIs… Read More »