Gravity Perks: Terms of Service // Include terms of service in notification
<?php
add_filter( 'gform_merge_tag_filter', 'gw_include_terms_of_service', 10, 4 );
function gw_include_terms_of_service( $value, $merge_tag, $options, $field ) {
if( $field['type'] == 'tos' ) {
if( $merge_tag != 'all_fields' )
$value = '<ul><li>' . $value . '</li></ul>';
$value = rgar( $field, 'gwtermsofservice_terms' ) . $value;
}
return $value;
}