Views:

Applies To: 

GroupID 10 - Self-Service

Business Scenario:

When a user creates a group using the Self-Service portal, is there a way to add a text to let the user know that the group will be available after 15 minutes?

Solution:

This can be achieved by making some changes in the JavaScript backend files of the portal.

Steps to achieve this:

  1. Go to:
    C:\Program Files\Imanami\GroupID 10.0\SelfService\Inetpub\[your portal name]\Web\Scripts\
  2. Now open a file named CreateWizard.min with notepad or notepad++.

    Note: Take a backup of the CreateWizard.min file before making changes to it.


     
  3. Find the function named DisplaySummary and replace the following code line.
    r=""
    with:
    r="<span><h1>Enter your text</h1></span>"
     
    Note: The <h1> tag is for the heading. If you do not want to display the text in heading style, do not use this tag in your code.

    The code should appear as:

  4. Now save the file and launch the Self-Service portal.