Created
April 11, 2019 07:12
-
-
Save doitonlinemedia/934ca3048e8cd643be85b4f24d33688b to your computer and use it in GitHub Desktop.
Gravityforms background-color all field e-mail template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Gravityforms background-color all field | |
*/ | |
add_filter("gform_email_background_color_label", "set_email_label_color", 10, 3); | |
function set_email_label_color($color, $field, $lead){ | |
return "#eeeeee"; | |
} | |
add_filter("gform_email_background_color_data", "set_email_data_color", 10, 3); | |
function set_email_data_color($color, $field, $lead){ | |
return "#ffffff"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment