Add ability to rename/change User Login part's section title/headers

My organization would like to change the title/name of the Account Information header when a new user is registering for a BBIS account via the User Login part. While our need is, in this instance, is specific to the User Login part, we do think that the ability to rename/change the section headers for all parts of this nature would be excellent functionality for BBIS to have.

  • Guest
  • May 13 2019
  • Reviewed: Voting Open
BBIS / Login
  • Attach files
  • Chris Kastner commented
    June 18, 2019 20:11

    There are a few missing fields in some of the language translations (especially the User Login part).   Whilst it would be great to have these updated - in the interim you can adjust these kinds of things with some pretty simple JavaScript.  Simply paste the following into an Unformatted Text part on your User Login page and it should update the account information heading to Your login details.  (Just update that bit of the code as desired)

    <script>
    Sys.Application.add_load(function(){

       $('span[id$="_lblAccountInfo"]').text("Your login details");
    });
    </script>