Hi there --
I'm looking to make some of the form fields in my custom form display as larger text boxes so users can type in longer entries than a single text field. I checked your FAQ; is this the entry that tells me how to do that?
///CHANGE THE CUSTOM FIELD INPUT IN THE OQP FORM
function my_custom_field_price_display($html,$field_settings) {
(…)
return $html;
}
add_filter(‘oqp_form_render_custom_field_MYFIELD’,'my_custom_field_price_display’,10,2);
If it is, could you break it down a little further to explain?
* I assume the new <text> tag would go where the (...) is?
* What do I replace the 10,2 with? What do those mean?
Thanks so much! The plugin is great -- I just want to customize it a bit!