We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07cff7a commit 3647f29Copy full SHA for 3647f29
gravity-forms/gw-rich-text-html-fields.php
@@ -10,7 +10,6 @@
10
/*
11
* @todo
12
* 1. Add merge tag selector.
13
- * 2. Add support for inserting images.
14
*/
15
16
add_action( 'admin_init', function() {
@@ -20,7 +19,10 @@
20
19
}
21
} );
22
23
-add_action( 'gform_field_standard_settings_200', function() {
+add_action( 'gform_field_standard_settings', function( $position ) {
+ if ( $position !== 200 ) {
24
+ return;
25
+ }
26
?>
27
28
<li class="content_setting rich_content_setting field_setting">
@@ -41,6 +43,8 @@
41
43
42
44
<style>
45
.rich_content_setting label {
46
+ /* Display the label above the editor without overlapping the Visual/Code tabs. */
47
+ display: inline-block !important;
48
position: relative;
49
z-index: 2;
50
0 commit comments