gotrgf_disable_mergetags_html_fields

Description

This hook can be used to disable the merge tag support in HTML Fields. This can be useful if you use this plugin in combination with the Populate Anything plugin of Gravity

Parameters

form_id | Int

Return

Bool

Usage

/**
 * Disable for all forms
 ***/
add_filter("gotrgf_disable_mergetags_html_fields", "__return_true");
/**
 * Disable for Specific form
 * In the code below, change FORMID to your form id
 ***/
add_filter("gotrgf_disable_mergetags_html_fields_FORMID", "__return_true");

Since

version 1.1.4

Scroll to Top