gform_mollie_payment_methods

Description

Filter the Mollie payment methods.

Usage

add_filter( 'gform_mollie_payment_methods', 'your_function_name', 10, 1 );

Parameters

  • $methods array

    The payment methods.

Placement

This code should be placed in the functions.php file of your active theme.

Since

Added in Mollie 1.0

Source Code

$methods = apply_filters( 'gform_mollie_payment_methods', $methods );

This hook is located in GF_Mollie::get_methods() in class-gf-mollie.php.