0
votes

in woocommerce check out page i want to show all countries in billing details field and show only specific country in shipping details country fields how i can do that

2
i just do this now. please check out image below answer and follow steps.dev_ramiz_1707

2 Answers

1
votes

woocommerce setting page

you can add from dashboard too. ship to specific counties option to add specific countries. no need to add code. use code when you need cause of already country code in woocomerce plugin.

i hope this help thanks

0
votes

Hook "woocommerce_checkout_fields" use to modify checkout fields.

function woo_override_checkout_fields( $fields ) { 

    $fields['shipping']['shipping_country'] = array(
        'type'      => 'select',
        'label'     => __('Selected Country List', 'woocommerce'),
        'options'   => array('IND' => 'India','US' => 'USA')
    );

    return $fields; 
} 
add_filter( 'woocommerce_checkout_fields' , 'woo_override_checkout_fields' );