[ARCHIVED] Custom text on user registration screen.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2015
01:43 PM
I picked up a great tip from @mrumery yesterday. Our institution wanted me to add a custom message to the new user registration page in Catalog to encourage Baylor-affiliates to use their campus email address when registering. His JavaScript solution was so simple but so helpful, I wanted to share it with the Catalog community.
You want to add this to a document ready function to wait for the DOM to load on the page.
$( document ).ready(function() {
$("div.registration-summary.text-center").append("<br>This is what some text can look like.</br>");
});
Using his suggested code snippet, this is what our first-time enrollment page looks like now after making it look the way our campus leadership wanted:
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.