- This topic has 4 replies, 4 voices, and was last updated 7 years, 5 months ago by .
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eMember › WP eMember Tweaks › eMember – Change Field Names in registration form for UK?
Hi
I am using the eMember plugin on a UK based site and need to change some of the registration form field labels, for instance changing the field label from Zipcode to Postcode, and State to County. Where is the best place to do this? We don’t need to update the database field names, just the labels for registration and edit account.
Also is it possible to add a date field in the registration so we can capture date of birth?
Thanks in advance
Duncan
Yes, you can customize any user visible text/message using the following technique:
Hi Admin
Many thanks for that. What about the date field so we can capture date of birth?
Duncan
You can add a custom field by going to settings->Custom Field Settings in the emember admin panel. Custom fields allow you to capture custom information from your members.
The form builder addon also lets you customize the form builds with greater flexibility:
https://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-form-builder-addon-extension-760
I just thought I would add that I found a solution to the postal code issue for those of us who are handing off projects and so re-uploading plugin files after an upgrade is not an option.
I added this to my child theme:
label[for=wp_emember_zipcode]::before {
content: "Postal Code: ";
font-size: 14px;
}
label[for=wp_emember_zipcode] {
display: block;
font-size: 0px
}