Forked from brandonkramer/remove-billing-word-from-validation-message.php
Created
November 17, 2024 16:22
-
-
Save kish2011/dc4554d49f9abe9ffe436e5c40180ebb to your computer and use it in GitHub Desktop.
Remove the 'Billing' word from the error validation message in WooCommerce. When using WooCommerce, the checkout billing validation has the word 'Billing' automatically prefixed. Use the following filter to remove this.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'woocommerce_add_error', 'woocommerceAddError' ); | |
/** | |
* Remove billing from the validation message | |
* @see wc_add_notice | |
* | |
* @param $error | |
* @return string|string[] | |
*/ | |
function woocommerceAddError ( $error ) | |
{ | |
if ( strpos( $error, 'Billing ' ) !== false ) { | |
$error = str_replace( "Billing ", "", $error ); | |
} | |
if ( strpos( $error, 'Facturering ' ) !== false ) { | |
$error = str_replace( "Facturering ", "", $error ); | |
} | |
return $error; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment