News:

Wondering if this will always be free?  See why free is better.

Main Menu

Sortable Packages (and Installed Time)

Started by Arantor, December 23, 2009, 10:07:34 AM

Previous topic - Next topic

dougiefresh

Thanks for the information, Arantor.  I guess I'll look at the code and see if I can figure out what changes to make.  If I can't, I guess I'll pay up to get the feature..... :o

live627

Quote from: dougiefresh on March 06, 2011, 07:34:24 PM
If I can't, I guess I'll pay up to get the feature..... :o
I know it's a last resort for many (most) SMF'ers to pay for a mod but purchasing one from my site does entitle you to a full year of support and updates

dougiefresh

Here's my solution to the RC5 problem: I installed the RC3 version of Packages.template.php into the Themes/default folder and used the mod listed in the first post with RC3 emulation.  Seems to work just fine  ;D

Arantor

Except you also reintroduced a bug that prevents you from deleting some kinds of packages you didn't want.

dougiefresh

 :o Can you explain?  I don't understand what you mean.....

Arantor

QuoteCan you explain?  I don't understand what you mean.....

One of the bugs in RC3 (which I know, I'm the one who reported it on the tracker!) is that you can't delete avatar packages with the delete button, it just gives you an error due to missing session validation. Needs RC5's packages template to fix it.

dougiefresh

 :o Hmmmmmmm.............. That could be a problem for me in the future   :'(

Shades.

Anyone planning to update this mod for RC5?
ShadesWeb.com - Custom Logos - My Themes on SMF | My Themes on ShadesWeb
https://shadesweb.com

BikerHound.com - Sniffing out the road ahead
https://bikerhound.com

Dream as if you'll live forever; Live as if you'll die today. - James Dean

Arantor

Quote from: BoZilla on April 09, 2011, 07:55:22 PM
Anyone planning to update this mod for RC5?

Well, the original author isn't going to, the current maintainer doesn't seem to have time, but there's a third person who has updated it to 2.0 RC5, added a new feature to it but is currently selling it on their paid mod site, I forget how much.

live627


Jessica.

I need help. I got tons of 'Test failed' and the operation has me puzzled, because I can't find the 'Find' required.

/Themes/default/Packages.template.php



File edits failed:

3. Packages.template.php


1.
Code (Find) Select
<th scope="col" class="smalltext" width="25%">', $txt['mod_version'], '</th>
            <th scope="col" class="smalltext" width="49%"></th>

Code (Replace) Select
<th scope="col" class="smalltext" width="10%">', $txt['mod_version'], '</th>
<th scope="col" class="smalltext" width="32%">', $txt['installed_on'], '</th>
<th scope="col" class="smalltext" width="32%"></th>


3.
Code (Find) Select
<th class="smalltext" width="25%">', $txt['mod_name'], '</th>
<th class="smalltext" width="25%">', $txt['mod_version'], '</th>
<th class="smalltext" width="49%"></th>

Code (Replace) Select
<th class="smalltext" width="25%">', sort_params_link($txt['mod_name'], 'mods', 'name'), '</th>
<th class="smalltext" width="10%">', $txt['mod_version'], '</th>
<th scope="col" class="smalltext" width="32%">', sort_params_link($txt['installed_on'], 'mods', 'time'), '</th>
<th scope="col" class="smalltext" width="32%"></th>



5.
Code (Find) Select
<th class="smalltext" width="25%">', $txt['mod_name'], '</th>
<th class="smalltext" width="25%">', $txt['mod_version'], '</th>
<th class="smalltext" width="49%"></th>

Code (Replace) Select
<th class="smalltext" width="25%">', sort_params_link($txt['mod_name'], 'avatars', 'name'), '</th>
<th class="smalltext" width="10%">', $txt['mod_version'], '</th>
<th scope="col" class="smalltext" width="32%">', sort_params_link($txt['installed_on'], 'avatars', 'time'), '</th>
<th scope="col" class="smalltext" width="32%"></th>


7.
Code (Find) Select
<th class="smalltext" width="25%">', $txt['mod_name'], '</th>
<th class="smalltext" width="25%">', $txt['mod_version'], '</th>
<th class="smalltext" width="49%"></th>

Code (Replace) Select
<th class="smalltext" width="25%">', sort_params_link($txt['mod_name'], 'languages', 'name'), '</th>
<th class="smalltext" width="10%">', $txt['mod_version'], '</th>
<th scope="col" class="smalltext" width="32%">', sort_params_link($txt['installed_on'], 'languages', 'time'), '</th>
<th scope="col" class="smalltext" width="32%"></th>


9.
Code (Find) Select
<th class="smalltext" width="25%">', $txt['mod_name'], '</th>
<th class="smalltext" width="25%">', $txt['mod_version'], '</th>
<th class="smalltext" width="49%"></th>

Code (Replace) Select
<th class="smalltext" width="25%">', sort_params_link($txt['mod_name'], 'other', 'name'), '</th>
<th class="smalltext" width="10%">', $txt['mod_version'], '</th>
<th scope="col" class="smalltext" width="32%">', sort_params_link($txt['installed_on'], 'other', 'time'), '</th>
<th scope="col" class="smalltext" width="32%"></th>

Testing Zone - SMF 2.0.7, default Curve
School & Chat - phpBB3, over 170 mods installed, official live forum

I use the latest version of Chrome

phpBB: Forum = a section; Board = whole site
SMF: Forum = whole site; Board = a section


Jessica.

#92
SMF 2.0
Testing Zone - SMF 2.0.7, default Curve
School & Chat - phpBB3, over 170 mods installed, official live forum

I use the latest version of Chrome

phpBB: Forum = a section; Board = whole site
SMF: Forum = whole site; Board = a section

live627

Maybe you should update your sig soon,eh? And there is a paid version out in the wild that works...

Jessica.

I can't get a paid one. Parents. No money.
Testing Zone - SMF 2.0.7, default Curve
School & Chat - phpBB3, over 170 mods installed, official live forum

I use the latest version of Chrome

phpBB: Forum = a section; Board = whole site
SMF: Forum = whole site; Board = a section

Shades.

ShadesWeb.com - Custom Logos - My Themes on SMF | My Themes on ShadesWeb
https://shadesweb.com

BikerHound.com - Sniffing out the road ahead
https://bikerhound.com

Dream as if you'll live forever; Live as if you'll die today. - James Dean

TheListener

Quote from: BoZilla on July 04, 2011, 06:56:16 PM
How 'bout an update for 2.0 final? 8)

Quote from: live627 on June 16, 2011, 08:17:25 PM
And there is a paid version out in the wild that works...


This may answer the question.

Shades.

Thx, but I only install free mods at the moment since I don't need it bad enough to pay for it!  ;) 8)
ShadesWeb.com - Custom Logos - My Themes on SMF | My Themes on ShadesWeb
https://shadesweb.com

BikerHound.com - Sniffing out the road ahead
https://bikerhound.com

Dream as if you'll live forever; Live as if you'll die today. - James Dean

MoreBloodWine

Does anyone know if this installs under 2.0.x ok ?
Want a sig like mine for your BTCGuild stats ? Then check this out: Spend-ur-Bits


live627


Advertisement: