Skip to content

Instantly share code, notes, and snippets.

@dennisnissle
Created February 3, 2026 13:13
Show Gist options
  • Select an option

  • Save dennisnissle/c6aa8dbf8ab0e71e5d5c0dac7d0c220d to your computer and use it in GitHub Desktop.

Select an option

Save dennisnissle/c6aa8dbf8ab0e71e5d5c0dac7d0c220d to your computer and use it in GitHub Desktop.
Adjust Germanized tax info
<?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