This is a discussion on Star Product v1.0 within the New osCommerce Contributions forums, part of the osCommerce 2.2 Forums category; This mod only allows you to select products that have an enabled status. Optional categories staus included. in catalog/admin/star_product.php: FIND: ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| ||||
| ||||
| This mod only allows you to select products that have an enabled status. Optional categories staus included. in catalog/admin/star_product.php: FIND: $star_query = tep_db_query("select p.products_id, pd.products_name from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = pd.products_id and pd.language_id = '" . $languages_id . "' order by pd.products_name"); REPLACE WITH: (if you do not have Enable & Disable Categories contrib installed) $star_query = tep_db_query("select p.products_id, pd.products_name, p.products_status from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = pd.products_id and pd.language_id = '" . $languages_id . "' and p.products_status = '1' order by pd.products_name"); OR REPLACE WITH: (if you have Enable & Disable Categories contrib installed) $star_query = tep_db_query("select p.products_id, pd.products_name, p.products_status from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd left join " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c on p.products_id = p2c.products_id left join " . TABLE_CATEGORIES . " c on p2c.categories_id = c.categories_id where p.products_id = pd.products_id and pd.language_id = '" . $languages_id . "' and p.products_status = '1' and c.categories_status = '1' order by pd.products_name"); More...
__________________ Michael Sasek osCMax Developer
|
| Sponsored Links | ||
| ||
| Thread Tools | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to charge TAX on taxable product only, not PRODUCT & TOTAL shopping cart ? | kepin | osCMax v2 Features Discussion | 1 | 07-08-2007 02:25 AM |
| Add Orders Statistics for each product in admin product list | michael_s | New osCommerce Contributions | 0 | 02-11-2007 06:11 AM |
| Add Orders Statistics for each product in admin product list | michael_s | New osCommerce Contributions | 0 | 02-10-2007 03:11 PM |
| Product Options / Product Attributes.. pulldown sorting.? | Preston | osCommerce 2.2 Discussion | 5 | 11-24-2005 07:53 PM |
| Specific Product Image based on chosen product attributes? | chrisrex | osCMax v2 Customization/Mods | 0 | 11-22-2005 09:41 AM |