在结帐时根据WooCommerce中的用户角色和购物车总数更改订单按钮文本

时间:2020-06-11 18:40:22

标签: php wordpress woocommerce checkout hook-woocommerce

如果用户角色是客户,我们需要检查以下功能。

如果订单总数为0,下面的功能会更改下订单按钮的文本,我们需要它检查用户角色是否也是客户并且总数是否为0。

到目前为止我们使用的代码

function mishaa_custom_button_text($button_text) {
    global $woocommerce;
    $total = $woocommerce->cart->total;
    if ($total == 0 ) {
        $button_text = "Submit Registration";
    }
    return $button_text;
} 
add_filter( 'woocommerce_order_button_text', 'mishaa_custom_button_text' );

1 个答案:

答案 0 :(得分:2)

https://github.com/woocommerce/woocommerce/blob/4.1.0/includes/wc-template-functions.php#L2240

  • 在结帐时输出付款方式。

您可以使用wp_get_current_user();

function filter_woocommerce_order_button_text( $button_text ) { 
    // Get cart total
    $cart_total = WC()->cart->get_cart_contents_total();

    // Get current user role
    $user = wp_get_current_user();
    $roles = ( array ) $user->roles;

    // Check
    if ( $cart_total == 0 && in_array( 'customer', $roles ) ) {
        $button_text = __('Submit Registration', 'woocommerce');
    }

    return $button_text;

}
add_filter( 'woocommerce_order_button_text', 'filter_woocommerce_order_button_text', 10, 1 );