OK, so i have been playing with the Repository module and modifying it to meet my needs and requirements and have also seen a number of threads requesting the ability to be able to spcify a link aswell as a download in the same repository item.
With my repository i have simply done the following -
In the form.html change the following item -
<TR style="padding-bottom: 8px;">
<TD ALIGN="Left" VALIGN="Top" WIDTH="150">Your EMail Address </TD>
<TD ALIGN="Left" VALIGN="Top">[AUTHOREMAIL]</TD>
</TR>
to -
<TR style="padding-bottom: 8px;">
<TD ALIGN="Left" VALIGN="Top" WIDTH="150">Your EMail Address or Website Address</TD>
<TD ALIGN="Left" VALIGN="Top">[AUTHOREMAIL]</TD>
</TR>
(Note the only thing that has been changed here is the description for this field in the upload form.
then add the following in to the Template.html file -
<tr>
<td align=left valign=top class="SubHead" width=75>Submitted By</td>
<td align=left valign=top class="normal">AUTHOREMAIL]</td>
</tr>
This will then add the submitters website address to the "File details" section and it will be a clickable link item.
In mine i have the following -
<tr>
<td align=left valign=top class="SubHead" width=75>Submitted By</td>
<td align=left valign=top class="normal">[AUTHOR] - [AUTHOREMAIL]</td>
</tr>
where you can see i have stringed the author and the email or web address together....
This works fantastically...
Thanks
Brad