Modify the woocommerce thankyou (checkout) page
-
In WooCommerce when an order is finish you’ll see a Thankyou page.
On this page there is a section with payment details, see this screen-dump:
SceendumpAs you can see the caption of the section is wrongly placed below the description and not above! ??
The template of this thankyou page is:
..wp-content/plugins/woocommerce/templates/checkout/thankyou.php
(..wp-content/themes/coraline_child/woocommerce/checkout/thankyou.php)The hook on that page that show this section:
<?php do_action( ‘woocommerce_thankyou_’ . $order->payment_method, $order->id ); ?>
How do I modify this section?
I expect it can be done using a hook in my functions.php but need some help on that. I guess I cannot use “woocommerce_thankyou_”?
- The topic ‘Modify the woocommerce thankyou (checkout) page’ is closed to new replies.