Dear all,
Using DSpace 6.3 Mirage2. I'm trying to customize the profile navigation dropdown. Was able to add a link in there by adding the following li tag in /dspace/webapps/xmlui/themes/Mirage2/xsl/core/page-structure.xsl:
<li>
<a href="/submissions">
<i18n:text>xmlui.Submission.Navigation.submissions</i18n:text>
</a>
</li>
before:
<li>
<a href="{/dri:document/dri:meta/dri:userMeta/
dri:metadata[@element='identifier' and @qualifier='logoutURL']}">
<i18n:text>xmlui.dri2xhtml.structural.logout</i18n:text>
</a>
</li>
The thing is that href is a relative URL for submissions: /submissions.
I'm trying to get the code for the Submissions link akin to this: <a href="{/dri:document/dri:meta/dri:userMeta/
dri:metadata[@element='identifier' and @qualifier='logoutURL']}">
but I can't seem to find it. Can somebody please help me where to find it or lead me to the correct code?
Thanks, cheers and have a nice day!