Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Payment Plugins

    (@mrclayton)

    Hi @edvardukou

    1. Apple Pay should never show for Android devices since it’s not supported. If it’s showing on your checkout page, that most likely means your theme is overriding the plugin’s styling which hides Apple Pay by default until it detects Apple Pay is supported.
    2. Yes, the plugin uses templating just like WooCommerce so you can customize the template and add any custom text that you want. https://docs.paymentplugins.com/wc-stripe/config/#/templates. The file is located at woo-stripe-payment/templates/product/payment-methods.php
    3. That depends on what minicart solution you’re using. The plugin hooks into the woocommerce_widget_shopping_cart_buttons action. You could change the priority that the plugin uses.

    Example:

    add_action('init', function(){
    remove_action('woocommerce_widget_shopping_cart_buttons', ['WC_Stripe_Field_Manager', 'mini_cart_buttons'], 5);
    add_action( 'woocommerce_widget_shopping_cart_buttons', [ 'WC_Stripe_Field_Manager', 'mini_cart_buttons' ], 30 );
    });

    great plugin! 

    Thank you, glad you like it. If you have a moment we always appreciate a good review.

    https://wordpress.org/support/plugin/woo-stripe-payment/reviews/

    Kind Regards

    Hello

    I have the same question but seems not answered, is possible to hide GPay for iOS?

    Plugin Author Payment Plugins

    (@mrclayton)

    @mountaintigre If you don’t want GPay to be available for iOS users then you should use the Payment Request Gateway rather than the Google Pay gateway. The Payment Request Gateway has a GPay integration but doesn’t show on iOS.

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