• Resolved alexaung

    (@alexaung)


    Hi,

    Showing state code(MMR013) instead of text (Yangon) in order tracking page and order confirm email.

    May I know how can I change it?

    Regards,
    Alex

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

Viewing 1 replies (of 1 total)
  • Plugin Author Condless

    (@condless)

    The state code displayed instead of the state name in all of the Emails? can you try to trigger an email manually (edit order => order actions => resend email)?

    Try this to fix the display in the order tracking page:

    add_filter( 'csz_enable_cities', 'csz_disable_cities_page' );
    function csz_disable_cities_page( $cities_enabled ) {
    	return false !== strpos( $_SERVER['REQUEST_URI'], 'order-tracking' ) ? false : $cities_enabled;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Showing State Code(Value) in Order Tracking Page’ is closed to new replies.