foxy_io

Select specific payment gateway on checkout

Nov 2nd, 2020 (edited)
2,884
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {% if context == "checkout" %}
  2. <script>
  3. FC.client.on("ready.done", function() {
  4.     // Default to Tazapay
  5.     FC.json.payment_method_type = 'tazapay';
  6.     FC.Template('checkout').clearOutput();
  7.     FC.checkout.renderPaymentMethod()
  8. });
  9. </script>
  10. {% endif %}
Advertisement
Add Comment
Please, Sign In to add comment