PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Saturday, February 12, 2022

[FIXED] Move shipping options from order review table before payment options on checkout in WooCommerce

 February 12, 2022     checkout, php, templates, woocommerce, wordpress     No comments   

Issue

I want to move the shipping options from the order review table before the payment options in the checkout.

I saw, that the order review table has its own template file review-order.php. There I found the following code:

<?php if ( WC()->cart->needs_shipping() && WC()->cart->show_shipping() ) : ?>

    <?php do_action( 'woocommerce_review_order_before_shipping' ); ?>

    <?php wc_cart_totals_shipping_html(); ?>

    <?php do_action( 'woocommerce_review_order_after_shipping' ); ?>

<?php endif; ?>

I know that I could reorder the content from woocommerce_review_order_before_shipping and woocommerce_review_order_after_shipping with an hook. But the code starts with an if clause.

So I'm not sure if or how I could move that section to another place in the checkout.

Is there a way I don't see?


Solution

You can cut the entire code block and then paste it into another template file within the checkout folder

So cut from the checkout/review-order.php template file line L67-L75

<?php if ( WC()->cart->needs_shipping() && WC()->cart->show_shipping() ) : ?>

    <?php do_action( 'woocommerce_review_order_before_shipping' ); ?>

    <?php wc_cart_totals_shipping_html(); ?>

    <?php do_action( 'woocommerce_review_order_after_shipping' ); ?>

<?php endif; ?>

To line 51 in the checkout/form-checkout.php template file

    ...
    <?php do_action( 'woocommerce_checkout_after_customer_details' ); ?>

<?php endif; ?>

<!-- PASTE HERE -->

<?php do_action( 'woocommerce_checkout_before_order_review_heading' ); ?>

<h3 id="order_review_heading"><?php esc_html_e( 'Your order', 'woocommerce' ); ?></h3>
...


Answered By - 7uc1f3r
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing