• Hi Keylor,

    I Appreciate your plugin,

    Anyway can you help me? on how to change the name of “Local pickup” in checkout page?

    Thank you,

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

Viewing 1 replies (of 1 total)
  • Plugin Author Keylor Mendoza

    (@keylorcr)

    Hello @tosh11formula

    Using this snippet you can edit the shipping label and also the store dropdown title (Local Pickup)

    function kmchild_wps_shipping_title($title) {
    	return 'My custom label';
    }
    add_filter('wps_shipping_method_label', 'kmchild_wps_shipping_title');
    add_filter('wps_store_checkout_label', 'kmchild_wps_shipping_title');

    Hope it helps

    Regargs

Viewing 1 replies (of 1 total)
  • The topic ‘How can i change the name of “Local pickup”’ is closed to new replies.