简体   繁体   中英

How to remove delivery address and delivery method in checkout page-opencart2

I want to remove Step 2,Step 3: Billing Details from the Checkout Page of OpenCart 2.0. I've seen a lot of how-tos but not for OpenCart 2.0.

i tried like that,

 <div class="panel panel-default" style="display:none">
      <div class="panel-heading">
        <h4 class="panel-title"><?php echo $text_checkout_shipping_address; ?></h4>
      </div>
      <div class="panel-collapse collapse" id="collapse-shipping-address">
        <div class="panel-body"></div>
      </div>
    </div>
    <div class="panel panel-default" style="display:none">
      <div class="panel-heading">
        <h4 class="panel-title"><?php echo $text_checkout_shipping_method; ?></h4>
      </div>
      <div class="panel-collapse collapse" id="collapse-shipping-method">
        <div class="panel-body"></div>
      </div>
    </div>

Thank you for the help!

I got the solution for this .

Just go to

Admin/product/data

and requires shipping select to No.

Also you can by default set shipping to No.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM