Skip to content

Instantly share code, notes, and snippets.

View Luidog's full-sized avatar

Lui de la Parra Luidog

View GitHub Profile
@webmerge
webmerge / gravityforms-webmerge.php
Last active April 2, 2018 08:41
Send Gravity Forms Submissions to WebMerge
function gf_get_field_name($field){
if(!empty($field['adminLabel'])){
$key = $field['adminLabel'];
}elseif(!empty($field['label'])){
$key = $field['label'];
}else{
$key = strval($field['id']);
}