• Hi, need some quick help with something!

    I want to remove the “Billing Address” title on my check out page for Woocommerce. I’m only accepting paypal at this time, so I don’t need a billing or shipping address section. Here’s what I’ve done:

    (1) – I’ve made a child-theme of my theme.
    (2) – I’ve managed to remove all of the fields on the check out page by editing the functions.php file in my child theme.

    I just have no idea how to remove the “Billing Address” part.

    If you want to view the page:
    1) Go to my website at BoomBoomBracelets.com
    2) Go to shop and add anything to your cart (because the check out page won’t be displayed unless you have something in your cart, i’m not trying to scam you into buying anything!)
    3) Go to the check out page and you’ll see the big “Billing Address” thing that I can’t get rid of…

    Note I’m kind of new to website development, but I have basic understanding of coding. So if anyone wants to shoot me a snippet of code I can throw into the functions.php file I’d really appreciate it! Also, it would be nice for me to see the code so I can study it as I’m still learning computer coding. Can’t thank you enough for helping!

    https://www.ads-software.com/plugins/woocommerce/

Viewing 5 replies - 1 through 5 (of 5 total)
  • I’m not a coder, but in Firebug it states the Billing Address is .span6, so I would try putting this in your custom/child.css:

    .span6 {
       display: none;
    }

    Might you tell me how you are using only Paypal? That is what I want to do with my site, but I still have the woocommerce checkout come up.

    Thread Starter Soaresyguitars

    (@soaresyguitars)

    That worked for me, but not in my child theme’s style.css. My theme has a custom css option so I put it in there. I might not be entering it correctly into my child theme’s custom.css page… Is there a statement I need to put before and after your code before it affects the sytle sheet?

    In any case it’s working now, so thank you.

    The way I’m using paypal is this: If you go to Dashboard>Woocommerce>Settings> and then click on the “Payment Gateways” tab you can edit each payment method as well as disable unwanted ones. When one clicks “Place Order” they’re linked to PayPal.

    I’m not sure if this is what you wanted, but this is how I use the PayPal payment method.

    So glad it worked. To be honest, I couldn’t say why it didn’t work in your child.css. I don’t use a child, cuz my Theme comes with a custom .css, which is what I use exclusively. Though sometimes I have to input !important; after what I’m changing. i.e. display: none !important;

    Thanks for the info! I guess to clarify, how did you get rid of all the woocommerce checkout area fields for the customer to put in their info? I want just the order items listed with PP button showing on the checkout page. ??

    Thread Starter Soaresyguitars

    (@soaresyguitars)

    I used to use Woocommerce Checkout Manager by Ephrain Marchan, that will disable everything except for the Billing Address. When I started to look to disable Billing Address I learned how to remove all the fields by code, which I prefer considering I’ve heard plug-ins can make websites run slower and collect information about them.

    Thanks so much! With that I was able to get where you were with the OP, with only needing to remove the Billing Address. ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Removing "Billing Address" Title on Checkout Page’ is closed to new replies.