I'm sure this is a stupid, newbie question, but how can I insure that text is changed to uppercase in some of the fields in signup page? thanks in advance DD
I'm planning on upgrading version just after Feb 1, is this something I can request for additional fee? Thanks Alex
It is possible without any fees. Create file amember/site.inc.php with the following content: PHP: <?php function vsf(&$vars){ // replace your_short_field_name1 and your_short_field_name2 // with actual field names (short) $vars['your_short_field_name1'] = strtoupper($vars['your_short_field_name1']); $vars['your_short_field_name2'] = strtoupper($vars['your_short_field_name2']); return array(); } setup_plugin_hook('validate_signup_form', 'vsf'); ?>