add_filter( 'woocommerce_get_price_suffix', 'custom_price_suffix', 10, 4 ); function custom_price_suffix( $price_suffix, $product, $price, $qty ) { // Check if taxes are enabled if ( wc_tax_enabled() ) { // Determine if prices are displayed including or excluding tax $display_tax = get_option( 'woocommerce_tax_display_shop' ); if ( 'incl' === $display_tax ) { // Prices are displayed including tax $tax_amount = $product->get_price_including_tax( 1, $price ) - $product->get_price_excluding_tax( 1, $price ); $formatted_tax = wc_price( $tax_amount ); // Set your custom text here $price_suffix = sprintf( __( ' (includes %s VAT)', 'woocommerce' ), $formatted_tax ); } elseif ( 'excl' === $display_tax ) { // Prices are displayed excluding tax $price_suffix = __( ' (excluding VAT)', 'woocommerce' ); } } return $price_suffix; }

Revolutionary search

Performers

Filters

Work

Filters

Artists

Filters