Hi, anyone can you please advise how can I limit people to Post Ad and can only type a maximum 15 characters in Phone Number field?
<?php if(strpos($required_fields, 'phone') !== false) { ?> sPhone: { required: true, minlength: 6 },
<?php if(strpos($required_fields, 'phone') !== false) { ?> sPhone: { required: true, minlength: 6, maxlength: 15 },
<?php if(strpos($required_fields, 'phone') !== false) { ?> sPhone: { required: "<?php echo osc_esc_js(__('Phone: this field is required.', 'veronika')); ?>", minlength: "<?php echo osc_esc_js(__('Phone: enter at least 6 characters.')); ?>" }, <?php } ?>
<?php if(strpos($required_fields, 'phone') !== false) { ?> sPhone: { required: "<?php echo osc_esc_js(__('Phone: this field is required.', 'veronika')); ?>", minlength: "<?php echo osc_esc_js(__('Phone: enter at least 6 characters.')); ?>", maxlength: "<?php echo osc_esc_js(__('Phone: max 15 characters.')); ?>" }, <?php } ?>
how to make it that it so it wont allow letters