Change "Add file or drop files here" text on submit a request form
Hey yall!
I would love to update the attachment text to make things feel a bit more urgent. Do you know how to update this?
Thank you!!
https://support.showandtell.film/hc/en-us/requests/new
PS Using the Copenhagen (2.5.1) theme with a few basic customizations.
-
Hello Nick Kelso,
As you guessed it does take some custom code in the theme.
What you'll want to do is actually add some custom Javascript. To do this simply head to your theme, press edit code, and open up the script.js. In there you can add a line of code that puts your desired text as the label for the attachments part of the request form. Something like this:
$("label[for='request-attachments']").text("Desired Text");
Make sure to add that somewhere within the document ready function, so somewhere after the line that includes:
$(document).ready(function() {
Disclaimer! This is just an example or idea, you will definitely need to work with a developer to make sure it works right for your setup or to troubleshoot if it doesn't work quite right!
But, hopefully that gets you headed in the right direction!
Please sign in to leave a comment.
1 Comments