gpt4 book ai didi

php - WooCommerce 折扣 : buy one get one 50% off with a notice

转载 作者:行者123 更新时间:2023-12-02 16:16:42 24 4
gpt4 key购买 nike

在我上一个问题之后 WooCommerce discount: buy one get one 50% off 每当特定产品(不是所有产品)添加到购物车时,我想向购物车添加自定义通知。

我想先检查数量,如果是 1,那么我想显示一条通知以增加该产品的数量。我自己从互联网上找到了一些东西,但我认为我的解决方案不正确:

add_action( 'wp', 'sp_custom_notice' );
function sp_custom_notice() {
if ( is_admin() && ! defined( 'DOING_AJAX' ) ) return;

//to display notice only on cart page
if ( ! is_cart() ) {
return;
}

global $product;

$product_id = method_exists( $product, 'get_id' ) ? $product->get_id() : $product->id;
if($product_id == 15730){
//check for quantify if equal to 1 in cart


wc_clear_notices();
wc_add_notice( __("Add one more to get 50% off on 2nd product"), 'notice');
}
}

如果有人能在这方面帮助我,那就太好了。

最佳答案

更新 2020 年 7 月

如果您仍在使用代码 from my answer对于您之前的问题,您可以稍微更改一下以使其正常工作:

add_action('woocommerce_cart_calculate_fees', 'add_custom_discount_2nd_at_50', 10, 1 );
function add_custom_discount_2nd_at_50( $cart ){
if ( is_admin() && ! defined( 'DOING_AJAX' ) )
return;

// YOUR SETTINGS:
$targeted_product_id = 40; // Set HERE your targeted product ID

// Initializing variables
$discount = $qty_notice = 0;
$items_prices = array();

// Loop through cart items
foreach ( $cart->get_cart() as $key => $cart_item ) {
if( in_array( $targeted_product_id, [$cart_item['product_id'], $cart_item['variation_id']] ) ){
$quantity = (int) $cart_item['quantity'];
$qty_notice += $quantity;
for( $i = 0; $i < $quantity; $i++ ) {
$items_prices[] = floatval( $cart_item['data']->get_price());
}
}
}

$count_items = count($items_prices); // Count items

rsort($items_prices); // Sorting prices descending order

if( $count_items > 1 ) {
foreach( $items_prices as $key => $price ) {
if( $key % 2 == 1 )
$discount -= number_format( $price / 2, 2 );
}
}

// Applying the discount
if( $discount != 0 ){
$cart->add_fee('Buy one get one 50% off', $discount );

// Displaying a custom notice (optional)
wc_clear_notices(); // clear other notices on checkout page.
if( ! is_checkout() ){
wc_add_notice( __("You get 50% of discount on the 2nd item"), 'notice');
}
}
// Display a custom notice on cart page when quantity is equal to 1.
elseif( $qty_notice == 1 ){
wc_clear_notices(); // clear other notices on checkout page.
if( ! is_checkout() ){
wc_add_notice( __( "Add one more to get 50% off on 2nd item" ), 'notice');
}
}
}

代码位于事件子主题(或事件主题)的functions.php文件中已测试且有效。

Note: The wc_add_notice() function absolutely don't need to be echoed

关于php - WooCommerce 折扣 : buy one get one 50% off with a notice,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46445008/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com