• Hi!
    I’m trying to get rid of the billing details on my checkout page in Woocommerce, and I’ve tried a lot of things, for example testing different codes (found on the net) one by one in my functions.php, and I’ve also tried different plugins which are supposed to remove the billing fields, but nothing works! (Some plugins are able to get rid of some fields, but not all of them). So now I hope that you can help me out! I’m quite new to WP, so do you have any suggestions? You can see the problem here:
    http://testsidene.com/shop/?add-to-cart=15967

    Thanks 🙂

Viewing 5 replies - 1 through 5 (of 5 total)
  • I guess you could hide them using CSS until you find a solution that actually removes them completely (I would ask on a dedicated WooCommerce support site), which fields do you specifically want to remove?

    Thread Starter irik

    (@irik)

    I basically want to remove them all, but I want to preserve the “create account”-fields (mail and password”). How do I do this with CSS?

    You could add this to your Child Theme style.css file, or using a Custom CSS plugin.

    .woocommerce-checkout [id*="billing_"] {
        display: none;
    }

    Do note though, the fields are only hidden from view, they’re still within your source code.

    Hope this helps.

    Thread Starter irik

    (@irik)

    Thanks! It helped a lot, and I used it in connection with a plugin that disables the required-fields, but I still get an error: “Please provide a valid email adress”, so I ‘m not able to proceed with the payment…

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Billing information’ is closed to new replies.