Created
March 12, 2026 08:48
-
-
Save aimahdi/1db3a08768527ef79e3ca7c751d27500 to your computer and use it in GitHub Desktop.
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_action('fluent_cart/checkout/before_summary_total', function ($data) { | |
| echo '<div>'; | |
| echo '<span style="font-weight: bold; color: red">Hinweis gemäß § 19 UStG:</span> <br>'; | |
| echo 'Gemäß § 19 Abs. 1 UStG wird keine Umsatzsteuer berechnet und daher auch nicht ausgewiesen (Kleinunternehmerregelung).'; | |
| echo '</div>'; | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment