Hi! Im just wondering if its possible to insert a required field text in required input instead of just the plain " * "? Is there a filter or hook to do this?
Hi! Im just wondering if its possible to insert a required field text in required input instead of just the plain " * "? Is there a filter or hook to do this?
You can do that with jQuery. Here's an example.
jQuery(document).ready(function() {
jQuery('.gform_wrapper .gfield_required').html('* required field');
});