Hello,
@eventaus We will inform you once we start implementing this.
Regards,
WP Event manager.
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
else could you or your team provide a snippet or method to integrate WP-Event manager with WooCommerce express check out
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
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.