Magento – How to i remove the dropdown option in country in checkout page in magento? I need to put only one country

checkoutdrop-downsmagento-1.9onepage-checkoutoption

From the following files :

/app/design/frontend/base/default/template/customer/form/reg‌​ister.phtml
/app/design/frontend/base/default/template/customer/form/add‌​ress.phtml
/app/design/frontend/base/default/template/checkout/onepage/‌​billing.phtml
and
/app/design/frontend/base/default/template/checkout/onepage/‌​shipping.phtml

i did this trick converting php line

<?php echo $this->getCountryHtmlSelect() ?>

to html line

<select name="country_id" id="country" title="<?php echo $this->__('Country') ?>" class="validate-select">
    <option value="IN" selected="selected">India</option>
</select>

but not worked. In site showing one blank line and other line India.

I need only one line India or remove dropdown.

Best Answer

Its very simple
system > configuration > general > countries option > allowed countries. Just select the country you want. enter image description here