• Resolved lukelee

    (@lukelee)


    I want to change the paypal email based on billing state, below is my code, I just couldn’t get the billing_state value. Can anyone help please?

    $paypal_args = apply_filters( 'woocommerce_paypal_args', $paypal_args );
    
    add_filter( 'woocommerce_paypal_args' , 'custom_override_paypal_email' );
    
    function custom_override_paypal_email( $paypal_args, $fields ) {
      global $woocommerce;
    
      if($fields['billing']['billing_state'] = 'New South Wales') {
        $paypal_args['business'] = 'dlsm94@hotmail.com';
      } elseif($fields['billing']['billing_state'] = 'Victoria') {
        $paypal_args['business'] = 'dlsm90@hotmail.com';
      } elseif($fields['billing']['billing_state'] = 'Tasmania') {
        $paypal_args['business'] = 'dlsm90@gmail.com';
      } 
    
        return $paypal_args;
    }

    https://wordpress.org/plugins/woocommerce/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Mike Jolley (a11n)

    (@mikejolley)

    add_filter( 'woocommerce_paypal_args' , 'custom_override_paypal_email', 10, 2 );

    With that change, $fields will be your order object.

    Thread Starter lukelee

    (@lukelee)

    Thanks Mike.
    After I put in priority and arg, it shows 505 internal error. Without the priority and arg, it just always return the first email which is dlsm94@hotmail.com

    Thread Starter lukelee

    (@lukelee)

    I solved it. In case anyone else need help.

    $paypal_args = apply_filters( 'woocommerce_paypal_args', $paypal_args );
    add_filter( 'woocommerce_paypal_args' , 'custom_override_paypal_email' );
    
    function custom_override_paypal_email( $paypal_args ) {
      global $woocommerce;
      $payment1_states = array( 'TAS', 'VIC');
      $payment2_states = array( 'NT', 'NSW');
    
      if( in_array( $woocommerce->customer->get_shipping_state(), $payment1_states ) ) {
        $paypal_args['business'] = 'dlsm94@hotmail.com';
      } elseif( in_array( $woocommerce->customer->get_shipping_state(), $payment2_states ) ) {
        $paypal_args['business'] = 'dlsm90@hotmail.com';
        print
      } else {
        $paypal_args['business'] = 'dlsm90@gmail.com';
      } 
    
        return $paypal_args;
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to get the billing state in functions.php?’ is closed to new replies.