Hello,
normally the coupon form is under the Order step. You want to move the coupon from the Order step to which step?
Thread Starter
bahl2
(@bahl2)
Hi! Thx for answers
I need this: https://i.imgur.com/90Yr8IU.png
move to down of page, after order view.
If i remove the hook action of your plugin and add native woo. Him print in all steps.
Thx!
The coupon form needs to be wrapped into an <div id=”checkout_coupon”> element in order for the multi-step checkout plugin to show it only on the Order step.
Instead of removing and adding the hooks I’d suggest to move the coupon section with the following JS code:
jQuery(document).ready(function($) {
$( '#checkout_coupon' ).appendTo( '.wpmc-steps-wrapper' );
});
or, if you prefer to add the JS code in the form of a PHP snippet:
add_action( 'wp_head', function() {
?>
<script type="text/javascript">
jQuery(document).ready(function($) {
$( '#checkout_coupon' ).appendTo( '.wpmc-steps-wrapper' );
});
</script>
<?php
});