The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
DownloadsII ver 5.0 vbAdvanced Add-On Details »» | |||||||||||||||||||||||||||
DownloadsII ver 5.0 vbAdvanced Add-On
Developer Last Online: Jan 2015
DownloadsII vBadvanced CMPS Add-On
Version 1.0.1 The DownloadsII vBadvanced CMPS Add-On, is not a stand-alone mod. It requires DownloadsII 5.0.1 or higher. You can find it here (free). Also vBadvanced CMPS (a vBulletin 3.5.x or 3.6.x version) is required. You can find it here (free). Installation
Changelog Version 1.0.0 CyberRanger - Initial Release Version 1.0.1 Jelle - Small code cleanup - Renamed the module to downloads2.php - Added a changelog and readme/install text file to the package Supporters / CoAuthors Show Your Support
|
Comments |
#62
|
||||
|
||||
Quote:
If you still want to do that, make these changes: Around line 144 FIND: PHP Code:
PHP Code:
|
#63
|
|||
|
|||
Quote:
bottom left hand corner |
#64
|
||||
|
||||
Quote:
|
#65
|
|||
|
|||
spot on cheers mate!
|
#66
|
|||
|
|||
Is it possiable to only have Latest Files and Most Popular Files?
Could i take away the Top Contributors? Best regards, Clem |
#67
|
||||
|
||||
If you set "Top Contributors" to 0 (that's a zero) in vbadmin -> Downloads -> Settings -> Number of "Top Contributors" to Display then the Top Contributors will not display.
|
#68
|
|||
|
|||
That's very easy to do, just edit the adv_portal_ecdownloads template.
Remove this part of the code: HTML Code:
<if condition="$dl->statstopcontributers > 0"> <tr align="center"> <td class="thead" width="25%"><span class="smallfont">Top Contributors</span></td> </tr> <tr align="center"> <td class="alt1"> <fieldset class="fieldset" style="margin:0px 0px 0px 0px"> <legend>Top Contributors</legend> <div style="padding:0px"> <table cellpadding="0" cellspacing="0" border="0" align="center" width="100%"> $dpanel_contrib_bits </table> </div> </fieldset> </td> </tr> </if> His method is easier to do, but then you also remove the Top Contributors stats from the downloads.php pages. With editing this template, you only remove it from the vBadvanced CMPS module. |
#69
|
||||
|
||||
Right, depending on your overall goal, use on of these two methods.
|
#70
|
|||
|
|||
any way to have this on a vbadvanced page as a center block and not have them on top of each other but side by side?
|
#71
|
|||
|
|||
That's possible, just change the adv_portal_ecdownloads template to what you want
This should work: HTML Code:
<tr align="center"> <td class="thead" width="25%"><span class="smallfont">Latest Files</span></td> <td class="thead" width="25%"><span class="smallfont">Most Popular Files</span></td> <td class="thead" width="25%"><span class="smallfont">Top Contributors</span></td> </tr> <tr align="center"> <td class="alt1"> <fieldset class="fieldset" style="margin:0px 0px 0px 0px"> <legend>Latest Files</legend> <div style="padding:0px"> <table cellpadding="0" cellspacing="0" border="0" align="center" width="100%"> <tr> <td width="100%"> <table cellpadding="2" cellspacing="{$stylevar['cellspacing']}" border="0" width="100%"> $dpanel_latest_bits </table> </td> </tr> </table> </div> </fieldset> </td> <td class="alt1"> <fieldset class="fieldset" style="margin:0px 0px 0px 0px"> <legend>Most Popular Files</legend> <div style="padding:0px"> <table cellpadding="0" cellspacing="0" border="0" align="center" width="100%"> <tr> <td width="100%"> <table cellpadding="2" cellspacing="{$stylevar['cellspacing']}" border="0" width="100%"> $dpanel_popular_bits </table> </td> </tr> </table> </div> </fieldset> </td> <td class="alt1"> <fieldset class="fieldset" style="margin:0px 0px 0px 0px"> <legend>Top Contributors</legend> <div style="padding:0px"> <table cellpadding="0" cellspacing="0" border="0" align="center" width="100%"> $dpanel_contrib_bits </table> </div> </fieldset> </td> </tr> |
Thread Tools | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|