• Resolved eventaus

    (@eventaus)


    Hi,

    I have a noticed an issue. I am using stripe and woocommerce for payment and have enabled express checkout for google and apple pay.

    The google and apple pay dont work for event tickets created by wp-event manager, but it works for other products create under woocommerce (simple products).

    When will you start supporting google and apple pay.

    Thank you

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support jathinhelp

    (@jathinhelp)

    Hello,
    @eventaus We will inform you once we start implementing this.



    Regards,
    WP Event manager.

    Thread Starter eventaus

    (@eventaus)

    do you have a timeline? At this time everyone uses apple and google pay. So its very important feature to have to increase ticket sales

    Thread Starter eventaus

    (@eventaus)

    else could you or your team provide a snippet or method to integrate WP-Event manager with WooCommerce express check out

    Thread Starter eventaus

    (@eventaus)

    function enable_google_apple_pay_for_event_tickets($available_gateways) { if (is_admin()) return $available_gateways; global $product; if (!$product) return $available_gateways; // Check if the product is an event ticket $is_event_ticket = has_term(‘event’, ‘product_cat’, $product->get_id()); if ($is_event_ticket) { if (isset($available_gateways[‘stripe’])) { $available_gateways[‘stripe’]->supports[] = ‘apple_pay’; $available_gateways[‘stripe’]->supports[] = ‘google_pay’; } } return $available_gateways;}add_filter(‘woocommerce_available_payment_gateways’, ‘enable_google_apple_pay_for_event_tickets’);

    the above code doesn’t work, could you help me tweak to work

    Plugin Support jathinhelp

    (@jathinhelp)

    Hello,
    Since this is a enhancement we will not be able to provide a timeline however we will ask our team to consider this under our future enhancement.



    Regards,
    WP Event Manager.

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

The topic ‘Google and Apple Pay Not Supported’ is closed to new replies.