Billing page

  1. how can I center the billing page? see attached screen shot

  2. how to get rid of this text "PayPal What is PayPal?
    Pay via PayPal; you can pay with your credit card if you don’t have a PayPal account.

Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our privacy policy."

  1. How to change the button on the billing page to “Pay Deposit”

Thanks

Hey Justin,

1.) I can see that the page is already centered. I guess you have followed the solution I gave in the other thread.

2.) To get rid of the Paypal text, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

.woocommerce-account form .payment_methods li, 
.woocommerce-checkout form .payment_methods li {
    display: none;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
    display: none;
}

3.) Changing the button on the billing page to “Pay Deposit” will require you to add a custom code that should only be added in a child theme. This allows you to make code changes that won’t be overwritten when an X update is released.

You might want to check out a non code solution in this article: https://www.lockedownseo.com/change-place-order-text-woocommerce-checkout/

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.