Title: Plugin customization
Last modified: July 2, 2024

---

# Plugin customization

 *  Resolved [edvardukou](https://wordpress.org/support/users/edvardukou/)
 * (@edvardukou)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/plugin-customization-33/)
 * Hello,
   great plugin! I have few questions:
    1. Is possible to hide GPay for iOS and Apple Pay for Android users?
    2. Is possible to add seperator (i.e. “or”) on product page below Add to cart? (
       [https://prnt.sc/r_N-yOEB2lYH](https://prnt.sc/r_N-yOEB2lYH))
    3. Is possible in mini cart move Apple Pay below Checkout button? ([https://prnt.sc/-7xIO34glzI7](https://prnt.sc/-7xIO34glzI7))

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [Clayton R](https://wordpress.org/support/users/mrclayton/)
 * (@mrclayton)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/plugin-customization-33/#post-17864912)
 * Hi [@edvardukou](https://wordpress.org/support/users/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](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:
 *     ```wp-block-code
       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/](https://wordpress.org/support/plugin/woo-stripe-payment/reviews/)
 * Kind Regards
 *  [mountaintigre](https://wordpress.org/support/users/mountaintigre/)
 * (@mountaintigre)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/plugin-customization-33/#post-17870312)
 * Hello
 * I have the same question but seems not answered, is possible to hide GPay for
   iOS?
 *  Plugin Author [Clayton R](https://wordpress.org/support/users/mrclayton/)
 * (@mrclayton)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/plugin-customization-33/#post-17871461)
 * [@mountaintigre](https://wordpress.org/support/users/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)

The topic ‘Plugin customization’ is closed to new replies.

 * ![](https://ps.w.org/woo-stripe-payment/assets/icon-256x256.png?rev=2611337)
 * [Payment Plugins for Stripe WooCommerce](https://wordpress.org/plugins/woo-stripe-payment/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woo-stripe-payment/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woo-stripe-payment/)
 * [Active Topics](https://wordpress.org/support/plugin/woo-stripe-payment/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woo-stripe-payment/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woo-stripe-payment/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [Clayton R](https://wordpress.org/support/users/mrclayton/)
 * Last activity: [1 year, 11 months ago](https://wordpress.org/support/topic/plugin-customization-33/#post-17871461)
 * Status: resolved