How to remove shipping options on the check out page? [Woocommerce]

74 views Asked by At

How to remove shipping options on the check out page [screenshot below]? The order summary should include the shipping cost based on the settings on cart page.

enter image description here

1

There are 1 answers

1
Mousebucks On BEST ANSWER

I modified the "review-order.php" page and added a php code snippet in the table.

<?php $current_shipping_cost = WC()->cart->get_cart_shipping_total(); echo $current_shipping_cost;?>