gform_card_name

Description

This filter is executed when creating the credit card field and can be used to modify the “Cardholder Name” label.

Usage

add_filter( 'gform_card_name', 'change_name', 10, 2 );

Parameters

  • $label string

    The label to be filtered.

  • $form_id integer

    The current form’s id.

Examples

This example changes the default Cardholder Name label:

add_filter( 'gform_card_name', 'change_name', 10, 2 );
function change_name( $label, $form_id ) {
    return "Name on card";
}

Placement

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

Source Code

This filter is located in js.php and GF_Field_CreditCard::get_field_input() in includes/fields/class-gf-field-creditcard.php.