Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save eagleyed/f682a28aaa4a5f8d7245a240b47c8e54 to your computer and use it in GitHub Desktop.
Save eagleyed/f682a28aaa4a5f8d7245a240b47c8e54 to your computer and use it in GitHub Desktop.
Change the level on the checkout page
function connormagyar_override_ctct_label( $args, $key, $value ) {
if ( 'customer_newsletter_opt_in' !== $key ) {
return $args;
}
$args['label'] = 'SOME CUSTOM LABEL';
return $args;
}
add_filter( 'woocommerce_form_field_args', 'connormagyar_override_ctct_label', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment