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!... ;)
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!... ;)