How to Change “Billing & Shipping” Title in WooCommerce

by | Last updated May 9, 2026 | WooCommerce Tutorials

Change “Billing & Shipping” Title

If you’re running an eCommerce site for a pickup-only or digital downloads shop using WooCommerce, you may have noticed that the default checkout form displays an H3 heading that reads “Billing & Shipping”.

For businesses that don’t offer shipping, this can be confusing for customers. Fortunately, there’s a simple way to customize this heading to better reflect your business model.

The Problem

By default, WooCommerce uses the heading “Billing & Shipping” on the checkout page. For pickup-only shops or shops that sell digital products and services, the “Shipping” part is unnecessary and potentially misleading.

The Solution

We can modify the checkout heading to display “Billing” or “Billing Info” instead. This small change can significantly improve the user experience and reduce confusion during the checkout process.

How to Implement the Change

To make this adjustment, you’ll need to add a small piece of code to your theme’s functions.php file. Here’s the code snippet you’ll need:

/**
* Snippet Name: WooCommerce Change "Billing & Shipping" Heading On Checkout Page
* Snippet Author: divibanks.cloud
*/

function wc_billing_field_strings( $translated_text, $text, $domain ) {
    switch ( $translated_text ) {
        case 'Billing details' :
            $translated_text = __( 'Payment Information', 'woocommerce' );
            break;
    }
    return $translated_text;
}
add_filter( 'gettext', 'wc_billing_field_strings', 20, 3 );

By making this small adjustment, you can create a more accurate and user-friendly checkout experience for your eCommerce site.

Remember to always test changes like this in a staging environment before applying them to your live site.

And, always use a child theme to implement changes like these, or use the Code Snippets plugin.

Shop Divi Products

Buy nicely done Divi Layouts, Child themes, and extensions for your next Divi project.

Related Articles

How To Change “Add To Cart” Button Text in DIVI Theme

How To Change “Add To Cart” Button Text in DIVI Theme

If you have been looking for a way to change Add to cart button text in wooCommerce in Divi Theme, this code will let you change the text to anything you want. To be able to change the text, follow the steps below: Go to WordPress admin dashboard. Then go to...

How to Import Demo Products to WooCommerce Shop

How to Import Demo Products to WooCommerce Shop

Setting up a new WooCommerce store can be exciting, but populating it with products from scratch can be time-consuming. Especially if you are a web designer who just wants to design the website. Fortunately, WooCommerce offers a simple solution: importing sample data....

How to Remove Sidebar on Woocommerce Product Pages in Divi Theme

How to Remove Sidebar on Woocommerce Product Pages in Divi Theme

Div theme displays a sidebar on Woocommerce product pages. If you are looking to remove the sidebar on Woocommerce product pages, but maintain it on other pages, this tutorial is for you. To be able to remove the sidebar, use the CSS below. It will hide the sidebar...

Leave a Comment

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

WP101 - FREE WordPress Tutorials

Enter your email address below to gain access to the FREE WordPress training.

You have Successfully Subscribed!

Pin It on Pinterest