Hi,
Being new to CMSMS I found it easy to install (dummies do not see all difficulties at the first glance..) and exactly what I always was looking for.
However I got serious problems with the Uploads Module spoiling all the layout of the page.
This is caused by detailled URL's coming with the names of files offered to download on my cmsms-page. The layout goes much too far in width.
(besides this the MIE bug with the empty space is getting me too but I read about this at another thread)
Searching the source code for the tag I couldn't find any place to stop the module showing off the URL.
Please help me finding the place to make URL's unseen on the page where downloads are offered.
Any hints are greatly appreciated.
Regards,
richardparker & pi
Problems with Layout - Module Uploads
-
ars17
Re: Problems with Layout - Module Uploads
I ran into the same problem on my own site. To get rid of the url, you need to change the template (summary, detail, or both depending on what you are using). To access the templates, go to the uploads module in the admin panel and then the summary templates/detail templates tab. You can either create a new template by clicking the new template link or change the default template. In either case, look for the following lines (depending on what version of the uploads module you have, this is from 1.3.0-beta3):
The line "{entry->download_url}" is what outputs the url so if you delete that (and the before that to get rid of an empty line), the url should not show up anymore.
Code: Select all
<td>
{$entry->name}
<br/>
{$entry->download_url}
{if isset($entry->thumbnail_url)}
<br/>{$thumbnail} <img src="{$entry->thumbnail_url}" border="0"/>
{else}
<br/><img src="{$entry->iconurl}" border="0"/>
{/if}
</td>