Product List: Update Total to another word

  • Hochwimmer
    Gefragt am 14. Februar 2024 um 15:10

    Ich möchte bei der Summierung im Bestellformular statt dem Begriff "Summe" den Begriff "Summe exklusive Versandkosten" verwenden.. Wo kann ich das einstellen?

  • Mahmoud Jotform Support
    Geantwortet am 14. Februar 2024 um 17:31

    Hi Johannes,

    Thanks for reaching out to Jotform Support. Unfortunately, our German Support agents are busy helping other Jotform users at the moment. I'll try to help you in English using Google Translate, but you can reply in whichever language you feel comfortable using. Or, if you'd rather have support in German, let us know and we can have them do that. But, keep in mind that you'd have to wait until they're available again.

    Now, let me help you with your question. You can simply double-click on the word "Total" to edit it. Let me show you how:

    • In your Product list field, double-click the Total label.
    • Once highlighted in blue, you can now type Summierung.

    Product List: Update Total to another word Image 1 Screenshot 20

    Give it a try and let us know if you are looking for something else.

  • Hochwimmer
    Geantwortet am 15. Februar 2024 um 10:48

    Danke, und wie ist es möglich, dass es in einer Zeile angezeigt wird?Product List: Update Total to another word Image 1 Screenshot 20

  • Mahmoud Jotform Support
    Geantwortet am 15. Februar 2024 um 11:32

    Hi Johannes,

    Thanks for getting back to us. In this case, you may need to use CSS code to make it in one line. Let me show you how:

    • Open your form in Form Builder and click on the blue Paint Roller icon on the right side of the screen.
    • Under the Styles tab, paste the code below into the Inject Custom CSS area.
    #total-text{
     visibility: hidden;
    }


    #total-text:before{
     content: "Summe exklusive Versandkosten";
     float: right;
     visibility: visible;
     text-overflow: ellipsis;
    white-space: nowrap;
    }


    See the screencast below for the result:

    Product List: Update Total to another word Image 1 Screenshot 20

    Give it a try and let us know how it goes.