• Resolved jordansys

    (@jordansys)


    Hi all,

    I am just wondering the best way to simplify my checkout page. My site is a saas tool that only has one option, I want to cut out some of these lines (totals, subtotals, etc.) to simplify the look. Thanks for the help!

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Mike Jolley (a11n)

    (@mikejolley)

    Hi! If you’re wanting to make some small changes to the checkout page totals I’d recommend using some CSS. Under Customize > Additional CSS, you can add CSS code. For example this would remove the subtotal row and order items from the totals area on checkout:

    #order_review .cart-subtotal { display:none; }
    #order_review tbody { display:none; }

    If you’d like to learn more about CSS, I highly recommend using the free tutorials at w3schools. Here, you can find the basics of selectors (how to target the right element on the page), and properties (how to change the element on the page).

    Hope that helps.

    Thread Starter jordansys

    (@jordansys)

    Mike! Worked perfectly thanks so much for the quick/ effective response!!! Going to look at those learning resources too!

    Jordan

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Simplify Checkout Page’ is closed to new replies.