[ARCHIVED] Change text within account registration in Catalog
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello Catalog users -
I'm in need of coding help. We are wanting to change the Already have an account? Sign in here text. I've reviewed the GitHub code (catalog/branding/change_registration_page_account_text at master · unsupported/catalog · GitHub)
and pasted the JS into the appropriate box on the Catalogs > Customizations page. I see no change in my wording when testing the Enroll page.
For example, here is a current view:
I simply want to change the text to read Already have a UTK NetID? Sign in here.
Here is the code I'm using:
var find_text = 'Already have an account?';
var replace_text = 'Already have a UTK NetID?';
var url_path = /^\/(courses|programs)\/\d+\/enrollment\/new\/*/i;
if(location.pathname.match(url_path)){
var element = $("p.text-center:contains('"+find_text+"')");
element.html(element.html().replace(find_text, replace_text));
}
Any help is greatly appreciated!
Rosie
This discussion post is outdated and has been archived. Please use the Community question forums and official documentation for the most current and accurate information.