Magento - Remove other shipping methods if free shipping is Available

The file you need to adjust is:
 app/design/frontend/default/YOURTEMPLATE/template/checkout/onepage/shipping_method/available.phtml

Place the following code right before the tag that displays the different options.
 
<?php
if ( array_key_exists('freeshipping', $_shippingRateGroups )) {
unset($_shippingRateGroups["flatrate"]);
unset($_shippingRateGroups["tablerate"]);
}
?>

Comments

Popular Posts

Magmi Single and Multiple Category Importer