plugineria/product-shipping-price-magento2

Show product Shipping price in Magento2

1.0.0 2021-02-21 05:48 UTC

This package is auto-updated.

Last update: 2024-04-21 22:52:03 UTC


README

Estimate product shipping rates right on product page.

  • Calculates minimal available shipping rate on product page.
  • Displays all available shipping options for signle product before adding to cart.
  • Provides REST API endpoints
  • Possibility to configure default shipping address or use existing address for registered users.

Tested shipping methods

  • Flatrate
  • DHL
  • UPS
  • US Postal Service
  • Federal Express
  • Free Shipping
  • Table rate

Tested product types

  • Simple
  • Virtual
  • Configurable

Architecture

An implementation of Magento2 module with Hexagonal architecture by Yury Ksenevich.

Source code is split into 4 tiers:

  1. Domain / Business logic - implemented in plugineria/product-shipping-price library.
  2. Application logic - implemented in plugineria/product-shipping-price library.
  3. Infrastructure - Magento-specific adapters for business logic, located in Magento2/Infrastructure/
  4. UI - API endpoints, frontend controllers and routers located in Magento2/Ui/

System requirements

  • Tested on Magento versions: 2.3.6+, 2.4.1+
  • PHP 7.3 or 7.4

Installation as a Magento2 module

:warning: Please note that you can only install the extension using composer.

  1. Backup your store database and web directory
  2. Open a terminal and move to Magento root directory

  3. run these commands in console:

composer require plugineria/product-shipping-price-magento2
bin/magento module:enable Plugineria_ProductShippingPrice
  1. Configure Example Shipping Address in admin > Stores > Configuration > Plugineria > Product Shipping Price > Example Shipping Address

  2. Flush cache

REST API

GET /V1/products/{sku}/shippingRates

Gets list of shipping rates for product

Request params

  • sku - string product SKU

Response

[
  {
    "price": 0,
    "code": "string",
    "title": "string",
    "description": "string",
    "shipping_method": {
      "id": "string",
      "title": "string"
    }
  }
]

GET /V1/products/{sku}/shippingRates/minimal

Gets minimal shipping rate for product

Request params

  • sku - string product SKU

Response

If rate found:

{
  "price": 0,
  "code": "string",
  "title": "string",
  "description": "string",
  "shipping_method": {
    "id": "string",
    "title": "string"
  }
}

If rate not found:

{}

User Interface

Product page

Minimal shipping rate block in add to cart section:

Minimal estimated shipping rate

Popup with all shipping rates for product:

All shipping rates for product

License

Contributing

By contributing to this project, you grant a world-wide, royalty-free, perpetual, irrevocable, non-exclusive, transferable license to all users under the terms of the license(s) under which this project is distributed.