Created
February 3, 2026 13:13
-
-
Save dennisnissle/c6aa8dbf8ab0e71e5d5c0dac7d0c220d to your computer and use it in GitHub Desktop.
Adjust Germanized tax info
This file contains hidden or 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
| <?php | |
| add_filter( 'woocommerce_gzd_product_tax_info', function( $notice ) { | |
| if ( ! empty( $notice ) ) { | |
| $notice = 'inkl. Umsatzsteuer'; | |
| } | |
| return $notice; | |
| }, 10 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment