This is a discussion on Change STOCK_MARK_PRODUCT_OUT_OF_STOCK where? within the osCMax v1.7 Discussion forums, part of the osCMax v1.7 Forums category; I have done searches on the whole directory structure under "catalog" and I can't find where to change the text ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| I have done searches on the whole directory structure under "catalog" and I can't find where to change the text for this variable. Help! |
| Sponsored Links | ||
| ||
|
#2
| ||||
| ||||
| catalog/includes/languages/english/shopping_cart.php |
|
#3
| |||
| |||
| I've looked there, but there's no define for that varable n the file: <?php /* $Id: shopping_cart.php,v 1.13 2002/04/05 20:24:02 project3000 Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2002 osCommerce Released under the GNU General Public License */ define('NAVBAR_TITLE', 'View Cart'); define('HEADING_TITLE', 'What\'s In My Cart?'); define('TABLE_HEADING_REMOVE', 'Remove'); define('TABLE_HEADING_QUANTITY', 'Qty.'); define('TABLE_HEADING_MODEL', 'Model'); define('TABLE_HEADING_PRODUCTS', 'Product(s)'); define('TABLE_HEADING_TOTAL', 'Total'); define('TEXT_CART_EMPTY', 'Your Shopping Cart is empty!'); define('SUB_TITLE_SUB_TOTAL', 'Sub-Total:'); define('SUB_TITLE_TOTAL', 'Total:'); define('OUT_OF_STOCK_CANT_CHECKOUT', 'Items marked with "' . STOCK_MARK_PRODUCT_OUT_OF_STOCK . '" dont exist in your desired quantity in our stock.<br><b><font color=red>Please alter the quantity of products marked with "' . STOCK_MARK_PRODUCT_OUT_OF_STOCK . '" (Try "1"), Thank you</font></b>'); define('OUT_OF_STOCK_CAN_CHECKOUT', 'Products marked with ' . STOCK_MARK_PRODUCT_OUT_OF_STOCK . ' dont exist in desired quantity in our stock.<br>You can buy them anyway and check the quantity we have in stock for immediate deliver in the checkout process.'); ?> |
|
#4
| |||
| |||
| above post was me btw...wasn't logged in |
|
#5
| ||||
| ||||
| This variable is loaded in your DB: TABLE configuration VALUES ('Mark product out of stock', 'STOCK_MARK_PRODUCT_OUT_OF_STOCK', '***', 'Display something on screen so customer can see which product has insufficient stock' Change it in your ADMIN.....
__________________ JPF - osCMax Fourm Moderator Try out our osCMax at: Live Catalog Demo Limited access Admin: Live Admin Demo Feel free to add products they way you want and then purchase them -=+=- Sorry nothing will be billed or shipped! |
|
#6
| ||||
| ||||
| BTW Code: define('OUT_OF_STOCK_CANT_CHECKOUT', 'Items marked with "' . STOCK_MARK_PRODUCT_OUT_OF_STOCK . '" dont exist in your desired quantity in our stock.<br><b><font color=red>Please alter the quantity of products marked with "' . STOCK_MARK_PRODUCT_OUT_OF_STOCK . '" (Try "1"), Thank you</font></b>');
S/B Code: define('OUT_OF_STOCK_CANT_CHECKOUT', 'Items marked with ' . STOCK_MARK_PRODUCT_OUT_OF_STOCK . ' dont exist in desired quantity in our stock.<br><b><font color=red>Please alter the quantity of products marked with (' . STOCK_MARK_PRODUCT_OUT_OF_STOCK . '), Thank you</font></b>');
|
| Sponsored Links | ||
| ||