Hello Elias,
In XMLUI, you can do this in CSS to just hide it from displaying by saying
display:none.
Thus, add to your webapp/xmlui/themes/<your-theme-name>/lib/<style>.css the
following rule.
.item-view-toggle {
display:none;
}
------
To do this in JSPUI, you'll need to edit a JSP, since there's no easy way to
select this in CSS.
So edit, dspace-jspui-webapp/src/main/webapp/display-item.jsp or
<dspace>/webapps/jspui/display-item.jsp and around line 200, comment out
much of this chunk:
<%
if (workspace_id != null)
{
%>
<form method="post" action="<%= request.getContextPath()
%>/view-workspaceitem">
<input type="hidden" name="workspace_id" value="<%=
workspace_id.intValue() %>" />
<input type="submit" name="submit_full" value="<fmt:message
key="jsp.display-item.text2"/>" />
</form>
<%
}
else
{
%>
<form method="get" action="<%=locationLink %>">
<input type="hidden" name="mode" value="full"/>
<input type="submit" name="submit_simple" value="<fmt:message
key="jsp.display-item.text2"/>" />
</form>
<%
}
Let me know if there's something else you were intending.
Peter Dietz
Systems Developer/Engineer
Ohio State University Libraries
On Mon, Aug 30, 2010 at 1:15 PM, Tzoc Caniz, Elias <tz...@muohio.edu> wrote:
> Hi dspace-tech list
>
> I need to hide the "Show full item record" link -but I cannot find where to
> "hide/comment" it
>
> I was checking the listserv archive and only found an entry with no reply
> :(
> http://www.mail-archive.com/dspace-tech@lists.sourceforge.net/msg08320.html
>
> ...if anyone knows the magic for this, please let me know!
>
> Thanks!
>
> Elias
>
> - - - - - - - - - - - - - - - - - -
> ElĂas Tzoc
> Digital Initiatives Librarian
> Miami University Libraries
> Oxford, OH 45056
>
>
>
> ------------------------------------------------------------------------------
> This SF.net Dev2Dev email is sponsored by:
>
> Show off your parallel programming skills.
> Enter the Intel(R) Threading Challenge 2010.
> http://p.sf.net/sfu/intel-thread-sfd
> _______________________________________________
> DSpace-tech mailing list
> DSpace-tech@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/dspace-tech
>
------------------------------------------------------------------------------
This SF.net Dev2Dev email is sponsored by:
Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd
_______________________________________________
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech