diff --git a/gravity-forms/gw-rich-text-html-fields.php b/gravity-forms/gw-rich-text-html-fields.php index 5fafe2e8..4e9b9275 100644 --- a/gravity-forms/gw-rich-text-html-fields.php +++ b/gravity-forms/gw-rich-text-html-fields.php @@ -10,7 +10,6 @@ /* * @todo * 1. Add merge tag selector. - * 2. Add support for inserting images. */ add_action( 'admin_init', function() { @@ -20,7 +19,10 @@ } } ); -add_action( 'gform_field_standard_settings_200', function() { +add_action( 'gform_field_standard_settings', function( $position ) { + if ( $position !== 200 ) { + return; + } ?>
  • @@ -41,6 +43,8 @@