Ich nutze bereits WPML. Dort kann ich die originalen Strings leider nicht ?ndern. Da es nur um diesen String geht, würde ich das gerne ohne extra Plugin machen. Mir geht es nur um ein Sternchen was ich hinzufügen m?chte (incl. VAT*).
Die Funktion steht ja in der “wz-gzd-core-functions” – gibt es da keine elegantere L?sung, z.B. über die functions.php o.?.?
function wc_gzd_get_tax_rate_label( $rate_percentage, $type = 'incl' ) {
if ( 'incl' === $type ) {
$label = ( get_option( 'woocommerce_tax_total_display' ) == 'itemized' ? sprintf( __( 'incl. %s%% VAT', 'woocommerce-germanized' ), wc_gzd_format_tax_rate_percentage( $rate_percentage ) ) : __( 'incl. VAT', 'woocommerce-germanized' ) );
} else {
$label = ( get_option( 'woocommerce_tax_total_display' ) == 'itemized' ? sprintf( __( '%s%% VAT', 'woocommerce-germanized' ), wc_gzd_format_tax_rate_percentage( $rate_percentage ) ) : __( 'VAT', 'woocommerce-germanized' ) );
}
/**
* Allow adjusting the tax rate label e.g. "incl. 19% tax".
*
* @param string $label The label.
* @param int $rate_percentage The percentage e.g. 19.
*
* @since 2.3.3
*
*/
return apply_filters( 'woocommerce_gzd_tax_rate_label', $label, $rate_percentage, $type );
}