• Resolved kylemopia

    (@kylemopia)


    Hello,

    Using Woocommerce, I would like to remove the “billing address” title that appears on the order received/checkout page of my website, once an order has gone through.

    Ideally, if this could be accomplished with Snippets, that would be great. I’m not familiar with editing templates, etc.

    The Woocommerce forum was unable to provide any type of solution to this issue.

    Thanks.

Viewing 8 replies - 1 through 8 (of 8 total)
  • Try this custom css:

    .woocommerce-order-received .woocommerce-column--billing-address h2 {
      display: none;
    }

    Custom css can be entered at:
    Dashboard > Appearance > Customize > Additional CSS

    This will work if your theme uses the default WooCommerce template. Results with theme-customised templates may vary.

    Thread Starter kylemopia

    (@kylemopia)

    Thanks for the response!

    Unfortunately, this did not work. On the order received page, the billing address heading is still shown.

    I believe I’m using the default WooCommerce template, through Elementor however. Maybe this is the problem?

    Any additional help would be appreciated!

    Thanks.

    Using Chrome, bring up the piece of page with this on, right-click & inspect, then post a link to a screenshot of what you see.

    Or better, you could put up a free product for me to buy and post the address.

    Thread Starter kylemopia

    (@kylemopia)

    Ok.

    Here is the link to a free, test product:

    https://mopia.ca/product/test/

    .woocommerce-order-received .woocommerce-customer-details h2 {
      display: none;
    }
    Thread Starter kylemopia

    (@kylemopia)

    It worked!

    Is there any way to do that same thing to the automated email that gets sent to the purchaser?

    Thanks again.

    That method won’t work for emails. I think you’ll need a custom email template. PHP skills or a developer will be needed.

    Thread Starter kylemopia

    (@kylemopia)

    Ok. Thanks for the help!

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Remove “billing address” from Woocommerce checkout/order received page’ is closed to new replies.