Hi,
I am sorry you have not received a response to your question sooner, it appears your topic may have been missed by the developers and support staff due to the increased number of topics created following the release of Gravity Forms 1.7
I would strongly advise against modifying the plugins files as any changes you make will be lost during updates. The easiest way to remove the min max instruction would be to target and hide it with CSS by adding the following to your theme's stylesheet
.gform_wrapper .instruction {
display: none !important;
}
The above will hide all instances of the instruction div found on the page so if you only want to hide one specific instruction you could modify the selector and use the field id instead like so
#field_15_1 .instruction {
display: none !important;
}
or you could add a custom CSS class name to the field's advanced tab.
Regards,
Richard
--
Just another member of the community helping out where I can
Posted 11 years ago on Sunday June 2, 2013 |
Permalink