Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

252
Vistas
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 Respuestas
Responde la pregunta

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 Denunciar

0

You could probably achieve this with some custom javascript:

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

Or jQuery:

$('#fieldID').val('');
over 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda