Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9146917
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T10:51:44+00:00 2026-06-17T10:51:44+00:00

I wrote a woocommerce plugin that creates the following custom checkout fields: billing_street_name billing_house_number

  • 0

I wrote a woocommerce plugin that creates the following custom checkout fields:

billing_street_name
billing_house_number
billing_house_number_suffix

shipping_street_name
shipping_house_number
shipping_house_number_suffix

I also added this to the admin pages, but since I cannot hook into get_formatted_billing_address & get_formatted_shipping_address (which are both used to display the addresses in writepanel-order_data.php and shop_order.php) I would like to copy them into the default billing_address_1 & shipping_address_1 like this:

billing_address_1 = billing_street_name + billing_house_number + billing_house_number_suffix

I tried to do this with the following (rudimentary) code:

add_action( 'woocommerce_process_checkout_field_billing_address_1', array( &$this, 'combine_street_number_suffix' ) );

public function combine_street_number_suffix () {
$key = $_POST['billing_street_name'] . ' ' . $_POST['billing_house_number'];

return $key;
}

but that doesn’t work – I don’t think the $_POST variable gets passed at all?

here’s how the hook is created in class-wc-checkout.php:

// Hook to allow modification of value
$this->posted[ $key ] = apply_filters( 'woocommerce_process_checkout_field_' . $key, $this->posted[$key] );
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T10:51:45+00:00Added an answer on June 17, 2026 at 10:51 am

    fixed this using the ‘woocommerce_checkout_update_order_meta’ hook:

    add_action('woocommerce_checkout_update_order_meta', array( &$this, 'combine_street_number_suffix' ) );
    
    public function combine_street_number_suffix ( $order_id ) {
        // check for suffix
        if ( $_POST['billing_house_number_suffix'] ){
            $billing_house_number = $_POST['billing_house_number'] . '-' . $_POST['billing_house_number_suffix'];
        } else {
            $billing_house_number = $_POST['billing_house_number'];
        }
    
        // concatenate street & house number & copy to 'billing_address_1'
        $billing_address_1 = $_POST['billing_street_name'] . ' ' . $billing_house_number;
        update_post_meta( $order_id,  '_billing_address_1', $billing_address_1 );
    
        // check if 'ship to billing address' is checked
        if ( $_POST['shiptobilling'] ) {
            // use billing address
            update_post_meta( $order_id,  '_shipping_address_1', $billing_address_1 );
        } else {
            if ( $_POST['shipping_house_number_suffix'] ){
                $shipping_house_number = $_POST['shipping_house_number'] . '-' . $_POST['shipping_house_number_suffix'];
            } else {
                $shipping_house_number = $_POST['shipping_house_number'];
            }
    
            // concatenate street & house number & copy to 'shipping_address_1'
            $shipping_address_1 = $_POST['shipping_street_name'] . ' ' . $shipping_house_number;
            update_post_meta( $order_id,  '_shipping_address_1', $shipping_address_1 );         
        }
    
    
        return;
    }
    

    I don’t think this code is very elegant though (the suffix check part specifically), so if anyone has tips on improving it – very welcome!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wrote a setter and getter method following Apple's conventions and noticed that despite
I wrote an IntelliJ IDEA plugin for version 7.0 that uses JspxIncludePathReferenceProvider to allow
I wrote a PHP script that retrieves values from a MySQL Query. I used
I wrote a Flickr search engine that makes a call to either a public
Wrote the following in PowersHell as a quick iTunes demonstration: $iTunes = New-Object -ComObject
I wrote a powershell script that can be run from powershell like so: PS
I wrote a piped shell command that has multiple pipes in it that works
Wrote the following code: GEvent.addListener(marker, click, function() { // Delete all markers. map.clearOverlays(); jQuery(points_array).each(function(i,
I wrote a dll in VS 2005 that will be loaded by another program
I'm new to writing WordPress plugins. I'm trying to write a little plugin that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.