Nevermind. I got it.
For those interested, find the second set (around lines 321 - 323) of the mouseover lines Louis was talking about in Admin/includes/modules/category_product_listing.php
That whole section will look like this:
Code:
// Split Page
$type_handler = $zc_products->get_admin_handler($products->fields['products_type']);
if (isset($pInfo) && is_object($pInfo) && ($products->fields['products_id'] == $pInfo->products_id) ) {
echo ' <tr class="dataTableRow" onclick="document.location.href=\'' . zen_href_link($type_handler , 'page=' . $_GET['page'] . '&product_type=' . $products->fields['products_type'] . '&cPath=' . $cPath . '&pID=' . $products->fields['products_id'] . '&action=new_product') . '\'">' . "\n";
} else {
echo ' <tr class="dataTableRow" onclick="document.location.href=\'' . zen_href_link($type_handler , 'page=' . $_GET['page'] . '&product_type=' . $products->fields['products_type'] . '&cPath=' . $cPath . '&pID=' . $products->fields['products_id'] . '&action=new_product') . '\'">' . "\n";
}
// Split Page
Edit the two lines that include the mouseover part so that whole block of code looks like this:
Code:
// Split Page
$type_handler = $zc_products->get_admin_handler($products->fields['products_type']);
if (isset($pInfo) && is_object($pInfo) && ($products->fields['products_id'] == $pInfo->products_id) ) {
echo ' <onclick="return false">' . "\n";
} else {
echo ' <onclick="return false">' . "\n";
}
// Split Page
And as already stated, this takes away the clicking ability for the whole row. You will now HAVE to use the icons on the right to edit products, but your stock updates will work perfectly from there.
You can put some color back in it by editing your Admin/includes/stylesheet.css.
Hope this clarifies some of the confusion for others.