
本文将指导你如何修改 WooCommerce 订阅增强插件中的代码,以实现更全面的试用期控制。原始代码仅针对特定产品 ID 检查用户是否已购买,而修改后的代码将检查用户是否购买过任何产品,从而更精确地限制试用期。
原始的 limit_trial 函数使用 $product->get_id() 来获取当前产品的 ID,并以此为依据判断用户是否已经购买过该产品。为了检查所有产品,我们需要使用 WP_Query() 来获取所有产品,然后循环遍历这些产品,检查用户是否订阅了其中任何一个。
以下是修改后的代码:
public static function limit_trial( $trial_length, $product ) {
if ( $trial_length <= 0 ) {
return $trial_length ;
}
$user_id = get_current_user_id() ;
if ( ! $user_id ) {
return $trial_length ;
}
$params = array(
'posts_per_page' => -1,
'post_type' => 'product'
);
$products = new WP_Query( $params );
if ( $products->have_posts() ) { while ( $products->have_posts() ) { $products->the_post();
if ( isset( self::$onetime_trial_cache[ $user_id ][ get_the_ID() ] ) ) {
return self::$onetime_trial_cache[ $user_id ][ get_the_ID() ] ? 0 : $trial_length ;
}
if ( $product->is_type( 'variation' ) ) {
$parent_product = wc_get_product( $product->get_parent_id() ) ;
} else {
$parent_product = wc_get_product( get_the_ID() ) ;
}
if ( 'no' !== self::get_product_limitation( $parent_product ) ) {
self::$onetime_trial_cache[ $user_id ][ get_the_ID() ] = false ;
return $trial_length ;
}
if ( 'yes' !== get_post_meta( $parent_product->get_id(), '_enr_limit_trial_to_one', true ) ) {
self::$onetime_trial_cache[ $user_id ][ get_the_ID() ] = false ;
return $trial_length ;
}
$subscriptions = wcs_get_users_subscriptions( $user_id ) ;
foreach ( $subscriptions as $subscription ) {
if ( $subscription->has_product( get_the_ID() ) && ( '' !== $subscription->get_trial_period() || 0 !== $subscription->get_time( 'trial_end' ) ) ) {
self::$onetime_trial_cache[ $user_id ][ get_the_ID() ] = true ;
return 0 ;
}
}
self::$onetime_trial_cache[ $user_id ][ get_the_ID() ] = false ;
} wp_reset_postdata(); }
return $trial_length ;
}代码解释:
通过使用 WP_Query 获取所有产品,并循环遍历它们,可以实现对所有产品而非单个产品的检查,从而更灵活地控制 WooCommerce 订阅增强插件的试用期功能。 这种方法允许你根据用户是否已经购买过任何产品来决定是否提供试用期,从而更好地满足业务需求。
以上就是WooCommerce 订阅增强:检查用户是否已购买任何产品以限制试用期的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号