Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {% if template_set == "PL" and context == "checkout" %}
- <script>
- FC.client.on("ready.done", function() {
- // Default to PayU
- FC.json.payment_method_type = 'payu_omnipay';
- FC.Template('checkout').clearOutput();
- FC.checkout.renderPaymentMethod()
- });
- FC.client.on("render.done", function() {
- // Move PayU to the top of payments list
- var stripe = $('.fc-container__grid--payment-method.fc-payment-method--stripe_connect').parent();
- $('#fc-payment-method-payu_omnipay').parent().insertBefore(stripe);
- });
- </script>
- {% endif %}
Advertisement
Add Comment
Please, Sign In to add comment