I have had a look a the list of modules available, tried a few, but I am looking for something in particular.
I was wondering whether a module/extension exists that will make it easy for a user to upload files and then have them listed in a pre-defined format using a tag inserted on a 'Downloads' page.
In my idea the way the file is listed depends upon the template but anything similar would be welcome!
Thank you very much.
Easily Manage Downloads
Re: Easily Manage Downloads
Uploads module
Re: Easily Manage Downloads
what is about DLM?
Re: Easily Manage Downloads
DLM seems to be in German?
Re: Easily Manage Downloads
Okay, I am using DLM and I am trying to change the theme slightly. I would like to add a description to main downloads page but I don't know the correct variable to call it. I have tried a couple of things within this TD:
Any ideas? Thanks.
Code: Select all
<td>
{$th_dl_description}
</td>[code]
Full code:
[code]{if !isset($error_none)}
<div class="dlm">
{capture assign="pagetitle"}{$pagetitle}{$path[1]}{$headline}{/capture}
{if strlen($path[0]) > 0}
{/if}
<h3 style="margin-bottom: 5px">Downloadable Resources:</h3>
{if $itemcount > 0}
{if trim($description) != ''}<p class="description">{$description}</p>{/if}
<table cellspacing="1" class="default" style="margin: auto; width: 95%">
<thead>
<tr style="text-align:left">
<th width="65%">Description</th>
<th width="35%">Download</th>
</tr>
</thead>
<tbody>
{foreach from=$items item=entry}
{cycle values="row1,row2" assign=rowclass}
<tr class="{$rowclass}">
<td>
{$th_dl_description}
</td>
<td>
{$entry->name}
</td>
</tr>
{/foreach}
</tbody>
</table>
{else}
<strong>{$no_children}</strong><br />
{/if}
</div>
{else}
<strong>{$error_none}</strong>
{/if}
Re: Easily Manage Downloads
Any help with this... please? 

Re: Easily Manage Downloads
sorry - I've never used DLM before, so I can't help you...