Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author ThemeHigh

    (@themehigh)

    Removing the label from our plugin settings will remove it from the checkout page. If it is still showing then we believe that some other plugin or theme in your site is overriding the checkout fields.

    Could you please raise a ticket through our website? We hope our technical team will be able to help you.

    Thank you!

    Plugin Author ThemeHigh

    (@themehigh)

    It was a compatibility issue with the theme. Adding the below code in the theme’s functions.pho file fixed the issue.

    add_filter('woocommerce_form_field_args','thcfe123_form_field_args',99999999,3);
    
    function thcfe123_form_field_args( $args, $key, $value = null ) {
        $args["label"] = '';
        return $args;
    }

    We are going to mark this thread as resolved.

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Field label do not disappear’ is closed to new replies.