• I’m currently building a new site using woocommerce for the shop part of the website,i have installed the woocommerce checkout manager plugin to remove unwanted fields from the checkout page. However this leaves

    Billing Details
    Additional information
    Example Label
    Ship to a different address?
    Your order

    on the checkout page, i want to remove this information, i have been told i can find it here

    Navigate to your file manager to WP-Content > Woocommerce > Templates > Checkout > form-billing.php, and all i need to do is carefully remove the words from between the “. However i cannot find this file, i am using windows 8.1. Any help would be much appreciated.

    https://wordpress.org/plugins/woocommerce/

Viewing 15 replies - 1 through 15 (of 17 total)
  • Download Filezilla Client and enter your hosting details.

    If your theme is Woocommerce Compliant you can find it here that file

    /wp-content/your-theme/woocommerce/templates/checkout/

    or else here

    /your-theme/wp-content/plugins/woocommerce/templates/checkout/

    Kinda looking like you can find it in ur plugins folder..

    Thread Starter monkey hazard

    (@monkey-hazard)

    Many thanks for that, i’m a bit of a novice, so have a couple of more questions.

    The site is being built to replace the one we currently have so i am using Wamp to host is as its not live yet, so do i still need filezilla?

    and woocommerce isn’t showing in
    /your-theme/wp-content/plugins/woocommerce/templates/checkout/

    when i go here i get to plugins and only Akismet is showing.

    please install woocommerce first

    Thread Starter monkey hazard

    (@monkey-hazard)

    Again please excuse my ignorance, but in plugins it says its activated and is working fine while i’m building site, so where do i install it?

    you said you are using WAMP. How come you don’t find the folder of your plugins?

    Thread Starter monkey hazard

    (@monkey-hazard)

    Woocommerce is in my plugins, and i can edit it from the dashboard, is that where i will find the text i want to remove?

    Install Custom CSS plugin and place the below codes under it

    .woocommerce-billing-fields h3, woocommerce-shipping-fields h3, p.form-row.notes label, .add_info_wccs h3
    {
    display:none;
    }

    Thread Starter monkey hazard

    (@monkey-hazard)

    Thanks very much for that, it removed most of it πŸ™‚

    is there a way of removing this part to0?

    “Example Label

    Ship to a different address?”

    The following code removes Example label

    p#myfld1_field label {
    display: none;
    }

    The following code removes Ship to a different address

    h3#ship-to-different-address label.checkbox {
    display: none;
    }

    This code

    h3#order_review_heading {
    display: none;
    }

    removes Your Order..

    I don’t know what you are doing with this..

    Hope this helps you

    Thanks,
    Muhammad

    Thread Starter monkey hazard

    (@monkey-hazard)

    Thank you so much Muhammad,it is very much appreciated πŸ™‚ just one more thing is there a way of removing the example placeholder text and the box around it?

    Go to Dashboard > Settings > Woocommmerce Checkout Manager. Scroll down to the last section. There you can look at the text “Example placeholder”. Delete it or replace with your own and update.!

    Thread Starter monkey hazard

    (@monkey-hazard)

    i cannot thank you enough for your help Muhammad, it really is appreciated.
    Mark

    No worries!

    If you need any help of WordPress, you can update this post with your Problem link

    Thanks!

    Thread Starter monkey hazard

    (@monkey-hazard)

    Hi Muhammad, i have finished building my new site. I know need to take the old website offline and replace it with the new one. The old website was a wordpress site and is hosted by 121. Any advice would be much appreciated.

Viewing 15 replies - 1 through 15 (of 17 total)
  • The topic ‘Woocommerce checkout text removal’ is closed to new replies.