RE: How do I get my store to work live
JB <[email protected]>
| Newsgroups | gmane.comp.web.oscommerce.installation |
|---|---|
| Message-ID | <8cfdfc843a82cc542dd1c76ac1f50e56@osCommerce-Forums> |
This message was sent from: Installation and Configuration
http://forums.oscommerce.com/viewtopic.php?p=227503#227503
----------------------------------------------------------------
Somehow you deleted the closing "}" so change the bottom of the file from this:
[code]
} elseif ($category_depth == 'nested') {
define('HEADING_TITLE', 'Categories');
?>[/code]
To this:
[code]
} elseif ($category_depth == 'nested') {
define('HEADING_TITLE', 'Categories');
}
?>[/code]