Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1342923

    Is there a way, to bring the amazon payment buttons/section in the payment methods?

    at the moment, amazon pay jumps directly on the first position on the site.
    it is not in the payment methods.

    would be great, to have all down there to select the one i want.

    #1342943

    Hey awasner,

    Thank you for the inquiry.

    Are you using another plugin for this payment method? Please provide the site URL so that we can check the issue, a screenshot will also help. Please contact the plugin authors for additional assistance.

    Best regards,
    Ismael

    #1346278

    Hey Ismael,

    Pics of the Integration:
    amz1
    amz2

    We are using the official woocommerce amazon pay plugin for the integration.

    Would be great, that amazon pay is listed with all the payment methods.

    Thanks

    #1346428

    Hi,
    Thank you for your question, this plugin is designed to show at the top of the page, as you see on the WooCommerce Amazon Pay page other users have pointed this out:
    2022-03-29_001.jpg
    with the following script it can be moved down to the payment method area:
    2022-03-29_002.jpg
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function move_amazon_pay_button_script() { ?>
        <script>
    (function($) {
         $('.woocommerce-checkout .wc-amazon-checkout-message').detach().insertBefore('.woocommerce-checkout-payment');
     })(jQuery);
     </script>
        <?php
    }
    add_action('wp_footer', 'move_amazon_pay_button_script');

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.