Page 1 of 1
Move position of MATC on checkout_payment.php
Posted: Thu May 21, 2026 10:46 am
by 14Steve14
Is there any way to move the position of the MATC checkbox so its above the payment, in this case, PayPal section. Customers are clicking on the PayPal buttons and expect to be taken to the PayPal page but instead get a message to click the MATC. Or even move it to a different page.
Image showing new location.
move-mact-above-paypal.png
Re: Move position of MATC on checkout_payment.php
Posted: Thu May 21, 2026 11:15 am
by BrockleyJohn
This is checkout_confirmation.php
Override it in your template and move
Code: Select all
echo $hooks->cat('injectFormDisplay');
above
Code: Select all
if (is_array($payment_modules->modules)) {
Re: Move position of MATC on checkout_payment.php
Posted: Thu May 21, 2026 11:45 am
by 14Steve14
@BrockleyJohn Many thanks. Worked like a charm.