My Courses > CustomizeWoo > Module 4 > Lesson 10: Checkout Page: REMOVE Content
Checkout Page: REMOVE Content
This is how to remove content from the checkout page by using the visual hook guide. If things do not get removed, check Module 5 Lesson 1.
Video
Please note: English captions are enabled by default (click on “CC” in the video player to disable). Also, you can click on the “gear” icon to manage quality and playback speed. Enjoy!
Sorry, this video is visible to logged in and fully registered students only.
If you already enrolled in this course, please LOG IN
Otherwise, please join the Business Bloomer Club
For any other queries, feel free to get in touch
If you already enrolled in this course, please LOG IN
Otherwise, please join the Business Bloomer Club
For any other queries, feel free to get in touch
Useful Links
WooCommerce Visual Hook Guide: Checkout Page
Related Snippets
WooCommerce: Move / Remove Coupon Form @ Cart & Checkout
WooCommerce: Hide “Order Notes” @ Checkout
WooCommerce: Remove or Move User Login / Registration at Checkout
WooCommerce: Hide Coupon Code @ Cart & Checkout Page
Hello. I want to provide only a field on the checkout page, so I managed to unset all unnecessary fields.
Now, how could I remove “Billing Info” and “My Order” words from the checkout page?
The explanatory image here: https://www.screencast.com/t/NPqxVvqj7ed
Thank you!
Hello Marcel! Unfortunately there are no hooks (filters) to remove those two elements. You’ll need to use display:none in your CSS. Let me know if that helps!
Thank you, I managed to remove, using CSS.
Now, the next question is: Could I conditionally change, in the Checkout page, the Privacy text and the button text based on the product category in the cart?
https://www.screencast.com/t/GirffsMl
Totally!
1) Privacy Text > there is a hook trigger for that:
I’d simply remove_action(), and then hook my own function that prints content based on what’s inside the WC()->cart (https://www.businessbloomer.com/woocommerce-check-product-category-cart/)
2) Place Order button label > there is a filter (https://www.businessbloomer.com/woocommerce-rename-place-order-button-checkout/) and using WC()->cart again you can return conditional content
Let me know how it goes!