• Resolved jr

    (@jmr08)


    hey.

    i cant use the billing field “billing_title”.
    the field comes with the woocommerce germanized plugin.

    is this a fault by your plugin?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter jr

    (@jmr08)

    Sorry!! Now, it is working.

    I deactived and activated a few times, and now, it is there ??

    Really like the Plugin!

    Thread Starter jr

    (@jmr08)

    sorry, but there still a fault..
    the billing_title field doesnt change the value..
    no matter what i choose (“herr”/mr or “frau”/mrs), in the mail is “frau”/mrs.
    i doesnt noticed before, because in my case, “frau” is correct.

    i have the feeling, that there something wrong with the woocommerce auto billing fields.
    i’ve activated the “billing_adress_2” and marked as required, but there no * and no message…

    can you help?

    Plugin Author ThemeHigh

    (@themehigh)

    Hi,

    We apologise for the delayed response.

    Could you please provide us a temporary admin access to your site to check this issue in details, you can send the details to [email protected]

    Thanks & Regards,
    Team ThemeHigh

    Thread Starter jr

    (@jmr08)

    hey.
    i still wrote an email. few weeks ago.

    i fixed the problem.

    for everyone, who need the same:

    you have to add a new filter in your function.php.
    use the “woocommerce_order_formattet_billing_adress”.

    
    add_filter( 'woocommerce_order_formatted_billing_address', 'move_checkout_fields_email', 10, 2 );
    
    function move_checkout_fields_email ( $address, $wc_order ) {
         
      $address = array(
    	  'company'    => $wc_order->billing_company,
    	  'title'      => $wc_order->billing_anrede,
    	  'last_name'  => $wc_order->billing_last_name,
    	  'first_name' => $wc_order->billing_first_name,
    	  'address_1'  => $wc_order->billing_address_1,
    	  'address_2'  => $wc_order->billing_address_2,
    	  'postcode'   => $wc_order->billing_postcode,	
    	  'city'       => $wc_order->billing_city,
    	  'state'      => $wc_order->billing_state,
    	  'country'    => $wc_order->billing_country
        );
        return $address;
    }
    
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘billing_title (woocommerce germanized)’ is closed to new replies.