• Resolved mypersc

    (@mypersc)


    Hi,

    how can I edit the information and the text style in table on the very end of the ckeckout page. I just want to do some minor changes like changing the styling and text description.

    https://ibb.co/dWkGKRs

    Is there a plug-in for it? I only have very little coding knowledge.

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • You would need to customize the checkout template. This template can be overridden by copying it to yourtheme/woocommerce/checkout/review-order.php.

    I’m not sure exactly what you mean by “text description”. If you want to change an existing string for another string, that can be done with the Say What? plugin: https://www.ads-software.com/plugins/say-what/

    When you are setting up replacement strings in Say What?’s text changes, the settings are:
    Original string:
    (what you get if the language is US English)
    Domain: woocommerce
    Context:
    (usually blank)

    If this is what you want to do, and you can’t get Say What? to work, please say which string it is that you want to change.

    Minor style changes can be done with some custom css. For a custom css suggestion, please say exactly what you want to change.

    More complex changes will need a custom template as Ahir says. So it depends on the detail of what you want to do.

    Thread Starter mypersc

    (@mypersc)

    Thank you for your fast replies. I changed the name “Zwischensumme” to “Preis” on the top of the table. I will stay with the other strings for now. That’s fine.

    Furthermore I want to change the text style. The text in the rows “Zwischensumme”, “Versand” and “inkl. MwSt.” should not be bold.

    Only the row “Gesamtsumme” (Total Sum) should be bold.

    Can you explain me how I can change that?

    Try this custom css:

    .cart_totals .cart-subtotal th {
      font-weight: normal !important;
    }
    .cart_totals .shipping th {
      font-weight: normal !important;
    }
    .cart_totals .order-tax th {
      font-weight: normal !important;
    }

    Custom CSS can be entered at:
    Dashboard > Appearance > Customize > Addtional CSS

    Thread Starter mypersc

    (@mypersc)

    Thank you, however this code is not working (nothing changed).

    I think that’s because I am using Divi? Do you know how I can adjust this code for Divi?

    Its working now. I suspect your caching system has caught up. Caching needs to be flushed after any css changes. The code is correct for Divi.

    Hi @mypersc

    This thread has been inactive for a while, so I’m going to mark this as resolved – if you have any further questions, you can start a new thread.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘How to edit cart details table on checkout page’ is closed to new replies.