• Resolved doors1980

    (@doors1980)


    Hi,

    I’m in the UK and the plugin works great but I need to be able to remove the default placholder of 7400 123456. Can you please advise?

    Thanks, J.

Viewing 1 replies (of 1 total)
  • Plugin Author Kaisar Ahmmed

    (@kaisarahmmed)

    Hello @doors1980,

    Thanks for using this plugin. At this moment, No option to hide a placeholder from the backend. But I will add this feature and release an updated version soon.

    But you can hide the placeholder by using jquery. Here is the code. Just change your form id and field id.

    jQuery(document).on('gform_post_render', function(event, form_id, current_page){
    	
    	// "63" change with your form
    	if(form_id == "63") {
    
    		setTimeout(() => {
    			//#input_63_13 change with your field id.
    			jQuery("#input_63_13").attr("placeholder", "");
    		}, 500);
    		
    	}
    	
    });

    Thanks for your patience.

Viewing 1 replies (of 1 total)
  • The topic ‘Remove / hide default placeholder’ is closed to new replies.