Kayako logo
Modifications & Addon Releases Modification guides and addons are posted here to share with the community. Do not post requests in here!

Notices

Reply
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  (#1) Old
sbkp Offline
New Member
 
Posts: 7
Join Date: Jul 2008
More intuitive "more files" link - 28-07-2008, 11:09 PM

If the "Display More Download Link" setting is set to Yes, you get a "More Files" link whether or not there are actually more files than are shown in the list. I found that unintuitive, so here's a change:

In the template dlcatdisplay, find this:

Code:
<{if $item[1][totalitems] > 0 && $settings[dl_displaymore] == 1}>
and replace it with this:

Code:
<{if $item[1][totalitems] > $settings[dl_maxcatarticles] && $settings[dl_displaymore] == 1}>
Then for the right column, find this:

Code:
<{if $item[2][totalitems] > 0 && $settings[dl_displaymore] == 1}>
and replace it with this:

Code:
<{if $item[2][totalitems] > $settings[dl_maxcatarticles] && $settings[dl_displaymore] == 1}>
   
Reply With Quote
Reply

Tags
files, intuitive, link

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
attached files in database or folder? mopa How do I? 1 13-12-2007 08:10 PM
Fatal error: ERROR: Could not insert all templates. gregpoulos Installation & Upgrading 79 07-07-2007 08:30 AM
eSupport - storage of attachments - database vs files directory - Your experience? richm SupportSuite, eSupport and LiveResponse 3 25-04-2007 04:02 PM
files Directory dnicol SupportSuite, eSupport and LiveResponse 2 25-05-2006 11:53 AM



Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47