Hi, I want to remove shipping address thing from checkout page because for my customers, billing and shipping address are always same. BUT I just want to remove that thing from showing in checkout page. Customers get confused. Help me.
views/cart/tmpl/shopper_addresses.php
remove
<td width="50%">
<?php
if(!empty($this->STaddress['fields'])){
foreach($this->STaddress['fields'] as $item){
if(!empty($item['value'])){
echo $item['title'].': '.$this->escape($item['value']).'<br/>';
}
}
} else {
foreach($this->BTaddress['fields'] as $item){
if(!empty($item['value'])){
echo $item['title'].': '.$this->escape($item['value']).'<br/>';
}
}
} ?>
</td>
BUT:::: do a template override
http://forum.virtuemart.net/index.php?topic=90935.0