Magento - Remove other shipping methods if free shipping is Available
The file you need to adjust is:
Place the following code right before the tag that displays the different options.
app/design/frontend/default/YOURTEMPLATE/template/checkout/onepage/shipping_method/available.phtmlPlace 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
Post a Comment