/**
* Theme Name: Medibazar Child
* Description: This is a child theme of Medibazar, generated by Merlin WP.
* Author: <a href="http://themeforest.net/user/KlbTheme">KlbTheme (Sinan ISIK)</a>
* Template: medibazar
* Version: 1.8.7
*/add_filter( 'woocommerce_checkout_fields' , 'remove_country_checkout_field' );

function remove_country_checkout_field( $fields ) {
     unset($fields['billing']['billing_country']);
     unset($fields['shipping']['shipping_country']);
     return $fields;
}