Last Name Required Message not changing
-
I created the code snippet:
function mycustomprefix_give_form_required_fields( $required_fields ) { //Last Name $required_fields['give_last'] = array( 'error_id' => 'invalid_last_name', 'error_message' => __( 'Please enter your last name.', 'give' ) ); return $required_fields; } add_filter( 'give_donation_form_required_fields', 'mycustomprefix_give_form_required_fields');
But instead of Please enter your last name, the message displayed is Please fill out this field
The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Last Name Required Message not changing’ is closed to new replies.