How to disable Signup button in API Portal Home Page
The following steps would help you to disable the signup button.
Remove the signup link on the portal by editing the display.xsl file in the AuthenticatedUser module:
Workspace --> Content Items -->
/SYSTEM/conf/sitebuilder/packages/layer7/modules/AuthenticatedUser/xsl/display.xsl for the <xsl:template match="LRSDeveloper[contains(@displayHint,'welcome-area')]"> template. The following section of display.xsl needs to be commented out:
| <a href="{$path_to_top}/register" class="signup lightbox" >Signup</a>
In other words, change it to this:
<!-- | <a href="{$path_to_top}/register" class="signup lightbox" >Signup</a> -->