News:

You may pay someone to create your store, or you visit our seminar and become a professional yourself with the silver certification

Main Menu

Remove SHIPPING Address Requirement

Started by GroSto, February 24, 2012, 12:06:35 PM

Previous topic - Next topic

GroSto

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.

PRO

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