• Resolved thod24

    (@thod24)


    I’m trying to remove the email address and phone number from the shipping label. Is there a way to do that?

    Thank you!

    Tim

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author WebToffee

    (@webtoffee)

    Hi @thod24,

    Please use the below code snippet to remove the phone number and email from shipping label.

    add_filter('wf_pklist_alter_additional_fields','wt_pklist_alter_additional_fields_fn',10,3);
    function wt_pklist_alter_additional_fields_fn($extra_fields,$template_type,$order)
    {
    	if($template_type=='shippinglabel')
    	{
    		unset($extra_fields['contact_number']);
    		unset($extra_fields['email']);
    	}
    	return $extra_fields;
    }

    Leave us a review, if you like the plugin and support.

    Thread Starter thod24

    (@thod24)

    Worked like a charm! Thank you!

    Whereabouts do I paste this to get it to work?

    Plugin Author WebToffee

    (@webtoffee)

    Hi @jojopillo,

    Copy it your WordPress site active theme’s or child theme’s functions.php.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove phone # and email address from shipping label’ is closed to new replies.