| Resolution | This is because the user has not draged any components (not mandatory
components) to their dashboard. Once they have a component on dasboard that
they draged the home button will show up. This is a defect and is being fixed in EP2.
In the mean time, if you are using a newer profile and edit the
menu_generator.xls
Find:
<xsl:when test="(local-name(parent::node()) = 'menu')">
aI("align=left;text=<xsl:value-of select="@name"/>;onfunction=coverFrame();offfunction=unCoverFrame();targetfeatures=height=<xsl:value-of select="$height"/>,
width=<xsl:value-of select="$width"/>,
<xsl:value-of select="$resizable"/>,
<xsl:value-of select="$scrollbars"/>,
<xsl:value-of select="$location"/>,
<xsl:value-of select="$statusbar"/>,
<xsl:value-of select="$directories"/>,
<xsl:value-of select="$menubar"/>,
<xsl:value-of select="$toolbar"/>;target=<xsl:value-of select="$newwindow"/>;url=<xsl:value-of select="@url"/>;");
</xsl:when>
It should be changed to…
<xsl:when test="(local-name(parent::node()) = 'menu')">
<xsl:if test="@name != 'Home'">
aI("align=left;text=<xsl:value-of select="@name"/>;onfunction=coverFrame();offfunction=unCoverFrame();targetfeatures=height=<xsl:value-of select="$height"/>,
width=<xsl:value-of select="$width"/>,
<xsl:value-of select="$resizable"/>,
<xsl:value-of select="$scrollbars"/>,
<xsl:value-of select="$location"/>,
<xsl:value-of select="$statusbar"/>,
<xsl:value-of select="$directories"/>,
<xsl:value-of select="$menubar"/>,
<xsl:value-of select="$toolbar"/>;target=<xsl:value-of select="$newwindow"/>;url=<xsl:value-of select="@url"/>;");
</xsl:if>
</xsl:when>
Logout, clear your cache, and if you are using Collapsed, change to Expanded and the home button should go away.
|