Skip to content

Instantly share code, notes, and snippets.

@wplaunchify
Created October 1, 2019 23:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wplaunchify/f10047d6fa6586a654fa14efd4d95581 to your computer and use it in GitHub Desktop.
Save wplaunchify/f10047d6fa6586a654fa14efd4d95581 to your computer and use it in GitHub Desktop.
Cleans up checkout for the two-step-university-membership checkout LaunchFlow (add to an html block in Elementor layout)
<style>
.woocommerce-billing-fields h3 {
display: none!important;
}
h3#order_review_heading {
display: none!important;
}
tr.recurring-totals {
display: none!important;
}
tr.cart-subtotal.recurring-total {
display: none!important;
}
tr.order-total.recurring-total {
display: none!important;
}
#add_payment_method #payment ul.payment_methods li img.stripe-icon, .woocommerce-checkout #payment ul.payment_methods li img.stripe-icon {
max-width: 30px;
}
.wcf-embed-checkout-form .woocommerce #order_review button {
border-color: #4534f1;
background-color: #4534f1;
}
.wcf-embed-checkout-form .woocommerce #payment #place_order:hover {
background-color: #4534f1;
border-color: #4534f1;
}
td.product-name {
display: none!important;
}
td.product-total {
width: 100%!important;
text-align: center;
}
th.product-name {
display: none!important;
}
th.product-total {
display: none!important;
}
tr.cart-subtotal {
display: none!important;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment