Merge Tag: Add merge {tab} for tabbed space.
Adds merge tags {tab}, {space}, and {newline}.
Instructions
Code
Filename: gw-merge-tag-tab.php
<?php
/**
* Gravity Wiz // Gravity Forms // Merge Tag: Add merge {tab} for tabbed space.
*
* Adds merge tags {tab}, {space}, and {newline}.
*
* Instructions:
* 1. Install per https://gravitywiz.com/how-do-i-install-a-snippet/
*/
add_filter( 'gform_pre_replace_merge_tags', function( $text, $form, $lead, $url_encode, $esc_html, $nl2br, $format ) {
if ( strpos( $text, '{tab}' ) !== false ) {
$text = str_replace( '{tab}', ' ', $text );
}
if ( strpos( $text, '{space}' ) !== false ) {
$text = str_replace( '{space}', ' ', $text );
}
if ( strpos( $text, '{newline}' ) !== false ) {
$text = str_replace( '{newline}', "\n", $text );
}
return $text;
}, 10, 7 );