The following code will hide the other shipping methods from the shopping cart page, the default magento checkout and one page checkout.
The file you need to adjust is:
app/ design/ frontend/ default/YOURTEMPLATE/ template/ checkout/ onepage/ shipping_method/ available.phtml
<?php if ( array_key_exists('freeshipping', $_shippingRateGroups )) { $_shippingRateGroups = array('freeshipping' => $_shippingRateGroups['freeshipping']); } ?>
place this code right before the <dl> tag that displays the different options.
The file you need to adjust is:
app/ design/ frontend/ default/YOURTEMPLATE/ template/ checkout/ onepage/ shipping_method/ available.phtml
<?php if ( array_key_exists('freeshipping', $_shippingRateGroups )) { $_shippingRateGroups = array('freeshipping' => $_shippingRateGroups['freeshipping']); } ?>
place this code right before the <dl> tag that displays the different options.
No comments:
Post a Comment