WordPress教程

代码动态修改 WordPress 价格实现会员优惠等功能

阿里云

开发电子商务网站的时候,我们经常需要对会员设置一定的优惠,比如,会员打八折,WooCommerce 没有为我们提供根据会员类型动态价格的能力,想要实现这个功能,我们可以使用插件,或者自己写一些代码。

想要实现这个功能,我们只要需要做到两点:修改会员浏览商品时的商品价格、修改会员购物车中和结账时的商品价格。下面的代码实现了用户登录网站后,商品价格统一打 8 折显示的功能。

也想出现在这里?联系我们
创客主机
  1. add_filter( 'woocommerce_get_price_html', function ( $price_html, $product ) {
  2.  
  3.     // 只在前端修改
  4.     if ( is_admin() ) return $price_html;
  5.  
  6.     // 只在设置了商品价格时才修改,免费产品直接返回
  7.     if ( '' === $product->get_price() ) return $price_html;
  8.  
  9.     // 如果用户登录,打八折  
  10.     if ( wc_current_user_has_role( 'customer' ) ) {
  11.         $orig_price = wc_get_price_to_display( $product );
  12.         $price_html = wc_price( $orig_price * 0.80 );
  13.     }
  14.  
  15.     return $price_html;
  16.  
  17. }, 9999, 2 );

下面的代码实现了会员登录后,修改购物车中的产品价格的功能。用户添加好商品去结账时,订单价格会按照购物车中显示的商品价格计算。

  1. add_action( 'woocommerce_before_calculate_totals', function ( $cart ) {
  2.  
  3.     if ( is_admin() && ! defined( 'DOING_AJAX' ) ) return;
  4.  
  5.     if ( did_action( 'woocommerce_before_calculate_totals' ) >= 2 ) return;
  6.  
  7.     // 如果客户没有登录,不显示价格
  8.     if ( ! wc_current_user_has_role( 'customer' ) ) return;
  9.  
  10.     // 遍历购物车项目,每个项目都打八折
  11.     foreach ( $cart->get_cart() as $cart_item_key => $cart_item ) {
  12.         $product = $cart_item['data'];
  13.         $price = $product->get_price();
  14.         $cart_item['data']->set_price( $price * 0.80 );
  15.     }
  16.  
  17. }, 9999 );

因为本文中所描述需求的逻辑非常简单,使用代码实现就显得非常简洁,如果您有更复杂的动态价格需求,使用本文中介绍的方法理论上也可以实现,但是可能要多写很多代码,这种情况下,建议使用插件来管理动态价格,比如 Dynamic Pricing 或 Advanced Dynamic Pricing forWooCommerce。

代码动态修改 WordPress 价格实现会员优惠等功能

已有 364 人购买
查看演示升级 VIP立刻购买

收藏
(0)

发表回复

热销模板

Ashade - 作品展示摄影相册WordPress汉化主题
LensNews

本站承接 WordPress / PbootCMS / DedeCMS 等
系统建站、仿站、开发、定制等业务!