acharlwood Posted October 8 Posted October 8 When clients sign up to take a class through our Acuity-managed website, they often end up putting the wrong name in -- we often have parents signing up kids, and the parents put their name in instead of their child's name. This creates extra back-end work where we have to fix the client name in our database, and the "Name" field name is not adjustable easily through the Acuity interface. We used custom CSS to add the word "of student" after the word "Name" -- here's a CSS snippet that might help others who are in a similar situation. You will need to figure out what the CSS class is on your own form in Acuity (bolded below). /* The code below adjusts the Name field in the signup form so that it's clear that people should enter the student name, not their own name, when they are signing up their children for a class */ /* label.css-1v5yf2j::after { content: " of student"; } */ /* label.control-label.hide-if-no-placeholder::after { content: " of student"; } */ label.control-label.hide-if-no-placeholder::before { content: "Student "; } Hopefully this saves someone else some time! -Aaron
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment