Allow your customer to calculate shipping before adding product to the cart with available shipping methods.
This plugin allow custom to check available shipping method and shipping cost on product page so they don’t have to go to cart page to find out cost of shipping method.
Customer can easily check if the product can be shipped to there location or not, so they don’t have to go to cart page to find out that you don’t ship to there area.
Customer can add address detail on product page and check shipping cost for that particular location/address.

More Features

  • Allow your customer to Calculate Shipping Cost on Product page.
  • Plugin calculate shipping cost using ajax so no page reload and it’s also work with any cache plugin.
  • Provide three different position on product page for display shipping calculator.
    • Below Title
    • Before add to cart form
    • After add to cart form
  • Also plugin provide shorcode [shipping-calculator] so you can add shipping calculation from anywhere in your site.
  • Provide different position for display shipping method result from two position.

    • Before shipping calculator
    • After shipping calculator
  • Provide option for autoload available shipping methods.
  • Option for remove County field from shipping calculator if shipped only in single country.
  • Option for remove state field if it’s require in shipping cost calculation.
  • Option for remove city field if it’s not require in shipping cost calculation.
  • Option for remove postcode field if it’s not require in shipping cost calculation.
  • Options for add message before shipping method message (i.e Available shipping method and charges at your location).
  • Options for add message if no shipping method available for customer location (i.e No shipping method available at your location).
  • Options for change button text.
  • Admin can easily set shipping method color,shipping cost color, button background color, buttons text color, buttons font size etc.. design using desing options
  • Easy transaltion, Supported WPML traslation and language .pot file included
  • Easy to use no coding require

Provide customization hooks for developer so developer can easily add addition changes without customize plugin. Below are list of hooks available in plugin

  1. Hook for change shipping method title
add_action('rpship_shipping_method_title',function($title){
    $title.="your code";
    return $title;
});
  1. Hook for change shipping method cost
add_action('rpship_shipping_method_title',function($cost){
    $cost.="your code";
    return $cost;
 });
  1. Hook for add anything before city field
add_action('rpship_before_city_field',function(){
     echo  'your code here';
 });
  1. Hook for add anything after city field
add_action('rpship_after_city_field',function(){
     echo  'your code here';
 });
  1. Hook for add anything before country field
add_action('rpship_before_country_field',function(){
     echo  'your code here';
 });
  1. Hook for add anything after country field
add_action('rpship_after_country_field',function(){
     echo  'your code here';
 });
  1. Hook for add anything before state field
add_action('rpship_before_state_field',function(){
     echo  'your code here';
 });
  1. Hook for add anything after state field
add_action('rpship_after_state_field',function(){
     echo  'your code here';
 });
  1. Hook for add anything before postcode field
add_action('rpship_before_postcode_field',function(){
     echo  'your code here';
 });
  1. Hook for add anything after postcode field
add_action('rpship_after_postcode_field',function(){
     echo  'your code here';
 });

Changelog

Version 3.1, June 13, 2022
------------------------------------------------------------------------------------
* Solved issue of variation product shipping cost calculation

Version 3.0, June 10, 2022
------------------------------------------------------------------------------------
* Change admin plugin setting page design 
* Add option for auto load shipping method
* Remove some unwanted function from plugin
* Solved some minor issue of plugin
* Supported latest woocommerce version 6.x.x

Version 2.9, April 05, 2022
------------------------------------------------------------------------------------
* Solved some minor design issue
* Supported latest woocommerce version 6.x.x

Version 2.8, Nov 24, 2021
------------------------------------------------------------------------------------
* Added support to latest woocommerce version

Version 2.7, Jun 17, 2021
------------------------------------------------------------------------------------
* Solved variation product issue

Version 2.6, May 10, 2021
------------------------------------------------------------------------------------
* Solved loco translation issue for some string

Version 2.5, April 26, 2021
------------------------------------------------------------------------------------

* Solved some minor issue 
* Supported latest woocommerce version 5.1.x

Version 2.4, Aug 5, 2020 
------------------------------------------------------------------------------------

* Solved some minor issue 
* Solved loco translate issue

Version 2.3, July 14, 2020 
------------------------------------------------------------------------------------

* Solved some minor issue 
* Add latest woocommerce version support

Version 2.2, May 8, 2020 
------------------------------------------------------------------------------------

* Add message option if no shipping available

Version 2.1, April 17, 2020 
------------------------------------------------------------------------------------

* Add option for hide shipping country if ship to single contry
* Solve some other minor issue

Version 2.0, March 31, 2020 
------------------------------------------------------------------------------------

* Support woocommerce version 4.0.X
* Solve some other minor...