MEC change name field

https://www.creativeexpressionsdiy.com/events/pick-your-project-3-3-2-2-2-2-3/

When I select a ticket and go to the next step to fill in my information the first default choice is ‘Name’. This is not something editable on the global side of MEC’s settings. The Name and Email are there by default.
Here’s what I want to accomplish…
I want that word ‘Name’ to be changed to ‘Full Name’ on the label and as the placeholder. I know this can be done, but I need the development help from your team.

Thank you.

Hi @nlwebdesign,

Thank you for reaching out to us. One way to do it is by editing the core plugin files which is not recommended at all and this is something which is outside the scope of our support and you’ll have to do it on your own or hire a third party developer to assist you with this.

However this can also be done with some scripting too, try adding the following code in the Theme Options > JS:

jQuery(document).ready(function($){
	$('.mec-booking button').click(function(){
		$(document).ajaxStop(function() {
			$('label[for="mec_book_reg_field_name1"]').html('Full Name');
			$('#mec_book_reg_field_name1').attr('placeholder', 'Full Name');
		});
	});
});

Please note that the code provided above serves as a guide only and is to help you in getting started so implementing it and maintaining the code will be out of our support scope and for further maintenance for new possible versions of the theme that may cause the customization to break, you will need to hire a developer.

Thank you for your understanding!

It’s showing up. Thank you.

Glad we could help.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.