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.
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
Hey Ismael,
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
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:
with the following script it can be moved down to the payment method area:
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