autoship_checkout_supported_payment_gateway_save_method_ids (filter)

( src/checkout.php) Used to filter the id's of the save payment methods of Autoship Cloud supported payment gateways (plugins) at checkout in the checkout form. It takes an array of payment form element Ids as its parameter.

Code

$gateway_element_ids = apply_filters( 'autoship_checkout_supported_payment_gateway_save_method_ids', array(
			'wc-stripe-new-payment-method',
			'wc-authorize-net-cim-credit-card-tokenize-payment-method',
			'wc-braintree-credit-card-tokenize-payment-method',
			'wc-braintree-paypal-tokenize-payment-method',
			'wc-cyber-source-tokenize-payment-method',
			'wc-nmi-gateway-woocommerce-credit-card-new-payment-method',
			'wc-sagepaymentsusaapi-new-payment-method',
			'trustcommerce-save-card',
			'wc-square-credit-card-tokenize-payment-method',
			'wc-sagepaydirect-new-payment-method',
			'wc-cybersource-credit-card-tokenize-payment-method',
			'wc-wc_checkout_com_cards-new-payment-method'
                         ) );

Found in the Functions