Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

254
Views
How to clear WooCommerce billing email and billing phone checkout fields after place order?

How do I clear a specfic checkout fields in WooCommerce after placing an order?

For example Billing email and Billing Phone. So that when the registered customer makes his/her next order, he/she has to fill that fields again?

I see this code, but this clean all the fields, i need only a specific field. Any advice?

add_filter('woocommerce_checkout_get_value','__return_empty_string',10);
over 4 years ago · Santiago Trujillo
2 answers
Answer question

0

The woocommerce_checkout_get_value hook has 2 arguments:

  • $value argument that is returned
  • $input argument to target checkout field(s)

So in your case, you get:

function filter_woocommerce_checkout_get_value( $value, $input ) {
    // Target checkout fields. Multiple fields can be added, separated by a comma
    if ( in_array( $input, array( 'billing_phone', 'billing_email' ) ) ) {
        $value = '';
    }

    return $value;
}
add_filter( 'woocommerce_checkout_get_value' , 'filter_woocommerce_checkout_get_value' , 10, 2 );
over 4 years ago · Santiago Trujillo Report

0

You could probably achieve this with some custom javascript:

document.getElementById('fieldID').value = ''

Or jQuery:

$('#fieldID').val('');
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!