Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1139200
    maghrabi42
    Participant

    Hello,
    I need to remove some failed on checkout page
    najdstore.com
    thank you

    #1139230
    Rad
    Moderator

    Hi there,

    Thanks for writing in.

    Looks like Woocommerce has special plugin for that https://woocommerce.com/products/woocommerce-checkout-field-editor/

    Or simply add this code to your child theme’s functions.php

    add_filter( 'woocommerce_checkout_fields' , 'remove_billing_fields' );
     
    function remove_billing_fields( $fields ) {
    
        unset($fields['billing']['billing_company']);
    
        return $fields;
    }

    Hope this helps.

    #1139737
    maghrabi42
    Participant

    thank you so much for your help the plugin is very helpful
    best regards

    #1140131
    Christopher
    Moderator

    You’re welcome.

  • <script> jQuery(function($){ $("#no-reply-1139200 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>