允许您的客户在使用可用的运输方式将产品添加到购物车之前计算运费。
此插件允许自定义在产品页面上检查可用的运输方式和运输成本,因此他们不必去购物车页面查找运输方式的成本。
客户可以轻松检查产品是否可以运送到那里的位置,这样他们就不必去购物车页面发现您没有运送到那里。
客户可以在产品页面上添加地址详细信息,并查看该特定位置/地址的运费。
更多功能
- 允许您的客户在产品页面上计算运费。
- 插件使用 ajax 计算运费,因此无需重新加载页面,并且也适用于任何缓存插件。
- 在产品页面上提供三个不同的位置,用于显示运费计算器。
- 在标题下方
- 添加到购物车表单之前
- 添加到购物车表单后
- 插件也提供 shorcode [运费计算器] 因此,您可以从网站中的任何位置添加运费计算。
-
为显示两个位置产生的发货方式提供不同的位置。
- 运费前计算器
- 发货后计算器
- 提供自动加载可用运输方式的选项。
- 如果仅在单个国家/地区发货,则可选择从运费计算器中删除 County 字段。
- 如果运输成本计算中需要,则可选择删除 state 字段。
- 如果运费计算中不需要,则可选择删除城市字段。
- 如果运费计算中不需要,则可选择删除邮政编码字段。
- 在配送方式消息之前添加消息的选项(即您所在位置的可用配送方式和费用)。
- 如果买家所在地区没有可用的配送方式(即您所在的地区没有可用的配送方式),则可选择添加消息。
- 更改按钮文本的选项。
- 管理员可以轻松设置运输方式颜色、运输成本颜色、按钮背景颜色、按钮文本颜色、按钮字体大小等。使用 DESING 选项进行设计
- 易于翻译,包括支持的 WPML 转换和语言 .pot 文件
- 易于使用,无需编码
为开发人员提供自定义钩子,以便开发人员无需自定义插件即可轻松添加其他更改。以下是插件中可用的钩子列表
1. 更改发货方式标题的钩子
add_action('rpship_shipping_method_title',function($title){ $title.="your code"; return $title; });
2. 挂钩更改运输方式费用
add_action('rpship_shipping_method_title',function($cost){ $cost.="your code"; return $cost; });
3. 用于在 city 字段之前添加任何内容的钩子
add_action('rpship_before_city_field',function(){ echo 'your code here'; });
4. 用于在 city 字段后添加任何内容的钩子
add_action('rpship_after_city_field',function(){ echo 'your code here'; });
5. 在 country 字段之前添加任何内容的钩子
add_action('rpship_before_country_field',function(){ echo 'your code here'; });
6. 用于在 country 字段后添加任何内容的钩子
add_action('rpship_after_country_field',function(){ echo 'your code here'; });
7. 用于在 state 字段之前添加任何内容的钩子
add_action('rpship_before_state_field',function(){ echo 'your code here'; });
8. 用于在 state 字段后添加任何内容的钩子
add_action('rpship_after_state_field',function(){ echo 'your code here'; });
9. 在 postcode 字段之前添加任何内容的钩子
add_action('rpship_before_postcode_field',function(){ echo 'your code here'; });
10. 用于在 postcode 字段后添加任何内容的钩子
add_action('rpship_after_postcode_field',function(){ echo 'your code here'; });
更改日志
Version 3.6, Jan 13, 2025 ------------------------------------------------------------------------------------ Solve some minor issue Support latest woocommerce version 9.5.x and wordpress version 6.7.x Version 3.5, Oct 02, 2024 ------------------------------------------------------------------------------------ Fixed table rate shipping method calculation issue Support latest woocommerce version 9.3.x and wordpress version 6.6.x Version 3.4, July 11, 2023 ------------------------------------------------------------------------------------ Solved wpml issue Supported latest woocommerce version 7.8.x and wordpress version 6.2.x Version 3.3, June 05, 2023 ------------------------------------------------------------------------------------ Solved issue for table rate shipping method Supported latest woocommerce version 7.7.x and wordpress version 6.2.x 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 issue Version 1.9, Oct 1st, 2019 ------------------------------------------------------------------------------------ * Solve some minor bug * Support woocommerce version 3.7. Version 1.8, july 3rd, 2017 ------------------------------------------------------------------------------------ * Solve tax issue * Support woocommerce version 3.x. Version 1.4, Feb 29st, 2016 ------------------------------------------------------------------------------------ * Solve variation product issue for woocommerce 2.4 Version 1.3, Sep 21st, 2015 ------------------------------------------------------------------------------------ * Added Option for hide calculator on product page. Version 1.2, July 7th, 2015 ------------------------------------------------------------------------------------ * Added Option for display shipping method in radio or dropdown. * Added Option for display shipping charge before or after shipping form. * Add Option for display shipping calculator after product price.
评价我们的产品
请帮助我们使我们的产品变得更好,并且请 给它 5 星评分.您的评论对我们很重要。