Skip Navigation

[Resolved] Phone field for Toolset Forms is not

This support ticket is created 5 years, 2 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 -
- 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 -

Supporter timezone: Europe/London (GMT+01:00)

Tagged: 

This topic contains 3 replies, has 2 voices.

Last updated by Nigel 5 years, 2 months ago.

Assisted by: Nigel.

Author
Posts
#1194330
Capture.JPG

I've tried uploading an image but your system won't allow it. So here's the markup from inspector.

<input type="text" id="cred_form_551_1-textfield-3-1549021803" name="wpcf-classified-contact-phone" value="" class="form-control wpt-form-textfield form-textfield textfield js-wpt-validate" output="bootstrap" preset_value="" urlparam="" value_escape="" make_readonly="" placeholder="" select_text="" data-wpt-validate="{"required":{"args":{"1":true},"message":"This field is required."}}" data-wpt-field-title="Classified Contact Phone" data-parsley-required="true" data-parsley-required-message="This field is required." data-wpt-type="textfield" data-wpt-id="cred_form_551_1_cred_form_551_1-textfield-3-1549021803" data-wpt-name="wpcf-classified-contact-phone">

#1194398

Nigel
Supporter

Languages: English (English ) Spanish (Español )

Timezone: Europe/London (GMT+01:00)

Sorry Gavin,

but "Phone field for Toolset Forms is not" what?

If you mean the input type is text not phone, that is known and we have an internal ticket about updating that, but it is not being actively worked on.

If you mean something else, please clarify.

#1195274

Hi Nigel - I had put <input type="tel"> in the subject field, which obviously got lost 🙂

Yes, it's the 'tel' type that's missing. Thanks. Gavin.

#1195352

Nigel
Supporter

Languages: English (English ) Spanish (Español )

Timezone: Europe/London (GMT+01:00)

Hi Gavin

OK, that's what I expected. Although there is an internal ticket related to this (and other field types, such as email and number) there has been no work done to implement it, and there is none scheduled.

I would encourage you to complete the form at https://toolset.com/home/contact-us/suggest-a-new-feature-for-toolset/, which goes direct to the product manager, who determines development priorities based upon the requests from clients.

In the meantime you would need to manually update the input type from text using a little JS, e.g.

( function( $ ) {
	$( document ).ready( function(){
		
		$('.phone').attr('type','tel');

	});
})( jQuery );
This ticket is now closed. If you're a WPML client and need related help, please open a new support ticket.