这可能是一个菜鸟问题,所以提前致歉。
我有多种订阅产品,其价格随订阅时间而异。我也有一个简单的订阅,其subscription_length =0。当购物车同时包含两种类型时,Woocommerce订阅会创建两个订阅。
我正在尝试修改购物车中所有商品的subscription_length元数据以匹配购物车中最长的长度,因此只能创建一个订阅。
我似乎找不到正确的方法来更新购物车。这可能只是愚蠢的人类PHP技巧。
这是该语句的最新版本,目前无法正常运行:
$cart[$item_key]['data']->subscription_length = $maxlength;
我已经尝试了数十种或更多种主题,以更新$ cart数据。有些失败,有些成功,但是$ cart中的数据没有改变。
function csi_align_subscription_length() {
$maxlength = 0;
$cart = WC()->cart->get_cart();
//find the longest length
foreach ( $cart as $item_key => $item ){
if ( WC_Subscriptions_Product::is_subscription( $item['data'] ) ) {
$length = WC_Subscriptions_Product::get_length( $item['data'] );
$maxlength = ($length > $maxlength) ? $length : $maxlength ; //get the longest length
}
}
//set all subscription lengths to the longest lengths
foreach ( $cart as $item_key => $item ){
if ( WC_Subscriptions_Product::is_subscription( $item['data'] ) ) {
echo '<pre>';
echo "cart-item before: ". var_dump($cart[$item_key]);
$cart[$item_key]['data']->subscription_length = $maxlength;
echo "cart-item after: ".var_dump($cart[$item_key]);
echo '</pre>';
}
}
WC()->cart->set_cart_contents($cart);
}
add_filter( 'woocommerce_subscription_cart_before_grouping', 'csi_align_subscription_length', 10, 1 );
我只需要在购物车中获得订阅即可与一个普通组对齐,因此每个结帐我只有1个订单和1个订阅。如果我在切线上迷路了,我愿意接受另一种方法。
答案 0 :(得分:1)
更新 (适用于简单订阅和(可变订阅的)订阅变体
钩子woocommerce_before_calculate_totals
允许更改购物车商品的产品属性。从woocommerce 3 and CRUD Objects开始,无法直接访问对象属性,您将不得不使用可用的getter和setters方法……在这里,我们:
所需的代码:
add_action( 'woocommerce_before_calculate_totals', 'before_calculate_totals_action_callback', 10, 1 );
function before_calculate_totals_action_callback( $cart ) {
if ( ( is_admin() && ! defined( 'DOING_AJAX' ) ) )
return;
if ( did_action( 'woocommerce_before_calculate_totals' ) >= 2 )
return;
$maxlength = []; // Initializing
// First loop (get)
foreach ( $cart->get_cart() as $cart_item ){
if ( in_array( $cart_item['data']->get_type(), array('subscription', 'subscription_variation') ) ) {
$maxlength[] = (float) $cart_item['data']->get_length();
}
}
// Get the highest value
$maxlength = max($maxlength);
// Second loop (set)
foreach ( $cart->get_cart() as $cart_item ){
if ( is_a( $cart_item['data'], 'WC_Product_Subscription' ) || is_a( $cart_item['data'], 'WC_Product_Subscription_Variation' ) ) {
$cart_item['data']->set_length( $maxlength );
}
}
}
代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。
注意::提交订单时,您肯定需要将购物车商品(自定义)的长度设置为自定义订单商品元数据。
答案 1 :(得分:1)
最终解决了该问题。没有用于“ subscription_length”的设置器。不得不使用update_meta_data方法。元密钥为“ _subscription_length”。以下代码有效。
function csi_align_subscription_length( $cart ) {
if ( ( is_admin() && ! defined( 'DOING_AJAX' ) ) )
return;
if ( did_action( 'woocommerce_before_calculate_totals' ) >= 2 )
return;
$maxlength = (float) 0;
// Find the longest subscription length
foreach ( $cart->get_cart() as $cart_item ){
if ( is_a( $cart_item['data'], 'WC_Product_Subscription' ) || is_a( $cart_item['data'], 'WC_Product_Subscription_Variation' ) ) {
$length = (float) WC_Subscriptions_Product::get_length( $cart_item['data'] );
$maxlength = ($length > $maxlength) ? $length : $maxlength ; //get the longest length
}
}
// set the subscription length for everything in the cart
foreach ( $cart->get_cart() as $item_key => $cart_item ){
if ( is_a( $cart_item['data'], 'WC_Product_Subscription' ) || is_a( $cart_item['data'], 'WC_Product_Subscription_Variation' )) {
$cart_item['data']->update_meta_data( '_subscription_length', $maxlength );
}
}
}
add_action( 'woocommerce_before_calculate_totals', 'csi_align_subscription_length', 5, 1 );