根据用户在 WooCommerce 中的总支出显示自定义文本

问题描述 投票:0回答:2

因此,我想在 WooCommerce 上运行 Tier 程序,并且需要根据网站上的总支出向用户显示 Tier 级别。

我正在使用 如何获取用户(客户)在 WooCommerce 中花费的总金额? 答案代码

我有 4 层,所以我想显示用户是否花费超过 600 美元一些文字,例如“恭喜您现在是第 1 层”等。

感谢您的帮助

php wordpress woocommerce shortcode
2个回答
1
投票

您可以添加

if
条件。尝试下面的代码。

function get_user_total_spent( $atts ) {

    extract( shortcode_atts( array(
        'user_id' => get_current_user_id(),
    ), $atts, 'user_total_spent' ) );

    if( $user_id > 0 ) {
        $customer = new WC_Customer( $user_id ); // Get WC_Customer Object

        $total_spent = $customer->get_total_spent(); // Get total spent amount

        if( $total_spent > 600 && $total_spent < 1200 ){
            $text = __( 'congrats you are now tier 1', 'woocommerce' );
        }elseif( $total_spent > 1200 ){
            $text = __( 'congrats you are now tier 2', 'woocommerce' );
        }else{
            $text = __( 'congrats you are now tier 3', 'woocommerce' );
        }

        $total_spent = wc_price( $total_spent );

        return "Total Amount Spent: ".$total_spent." ".$text;
    }
}
add_shortcode('user_total_spent', 'get_user_total_spent');

0
投票

如果我想向该客户发送祝贺电子邮件怎么办?谢谢

© www.soinside.com 2019 - 2024. All rights reserved.