Log in

View Full Version : Simple: seperate unactive products in Products Manager


vbenhancer
04-15-2012, 10:00 PM
Just a simple tweak to list your products in order of "inactive/active" so you can track easily the products that are enable or not... way easier to read than the regular display that only have titles striked.

from /admincp/plugin.php

FIND ON LINE 707

$products = $db->query_read("
SELECT *
FROM " . TABLE_PREFIX . "product
ORDER BY title
");


ADD "active, " SO IT SHOWS AS:

$products = $db->query_read("
SELECT *
FROM " . TABLE_PREFIX . "product
ORDER BY active, title
");

that's it, yeap... now, visit http:/ /yoursite.com/admincp/plugin.php?do=product to see the result!

--------------- Added 1334607427 at 1334607427 ---------------

... i was bored to scroll down today, so it took me 32 seconds to fix that!... ;)

Lynne
04-16-2012, 08:10 PM
Nice!

And if you want to list them as enabled first, and then disabled, add DESC to the ORDER clause:
ORDER BY active DESC, title

Boofo
04-16-2012, 08:32 PM
Or you could install the Advanced Product Management mod and not have to edit any files.

vbenhancer
04-16-2012, 09:17 PM
Or you could install the Advanced Product Management mod and not have to edit any files.

the point here is to just small-trick the engine, not replace it with something else... but yes, the APM could be good for some people!

Boofo
04-16-2012, 09:46 PM
A lot of users here are not comfortable with editing files. That is the only reason I mentioned it.

Lynne
04-17-2012, 02:37 AM
A lot of users here are not comfortable with editing files. That is the only reason I mentioned it.
And some users would rather do a quick, simple file edit rather than install a product to do the same thing.

It's always good to have options. :)

vbenhancer
04-17-2012, 10:46 AM
stop fighting in my article, kids...

Lynne
04-17-2012, 05:14 PM
Boofo and I don't fight. Sorry if it looked that way. I ♥ Boofo. :)