File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 1+ /**
2+ * Gravity Perks // Advanced Select // Dropdown Remove Button
3+ * https://gravitywiz.com/documentation/gravity-forms-advanced-select/
4+ *
5+ * Adds a Remove button to selection options in Dropdown fields. By default,
6+ * the remove button is only added to Multi-Select fields.
7+ *
8+ * Instructions:
9+ *
10+ * 1. Install this snippet with our free Custom JavaScript plugin.
11+ * https://gravitywiz.com/gravity-forms-code-chest/
12+ */
13+ window . gform . addFilter (
14+ 'gpadvs_settings' ,
15+ function ( settings , gpadvsInstance , selectNamespace ) {
16+ settings . plugins . remove_button = {
17+ title : window . GPADVS . strings ?. remove_this_item
18+ ? window . GPADVS . strings . remove_this_item
19+ : 'Remove this item' ,
20+ }
21+
22+ return settings ;
23+ }
24+ ) ;
You can’t perform that action at this time.
0 commit comments