Search code examples
phphtmlcsswoocommercewoocommerce-theming

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


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


Solution

  • 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;?>