
Originally Posted by
motti
hi
I just had to try it so i install it and that what i got
and whan i try open it on the web i got an error page
Parse error: syntax error, unexpected T_STRING in /home/tiledepo/public_html/store/includes/languages/english/mystic/index.php on line 61
i look in to it and i also change the store name to my title and still got some error
Open index.php and find line the following code (starting at line 61)
PHP Code:
define('HEADING_TITLE', '<h1>Welcome to ' .STORE_NAME'</h1>'); /*Replace this line with the headline you would like for your shop. For example: Welcome to My SHOP!*/
} elseif ($category_depth == 'nested') {
// this will also be used on Top Level
define('HEADING_TITLE', '<h1><h1>Welcome to ' .STORE_NAME'</h1>'); /*Replace this line with the headline you would like for your shop. For example: Welcome to My SHOP!*/
replace these lines with the following:
PHP Code:
define('HEADING_TITLE', '<h1>Welcome to ' .STORE_NAME . '</h1>'); /*Replace this line with the headline you would like for your shop. For example: Welcome to My SHOP!*/
} elseif ($category_depth == 'nested') {
// this will also be used on Top Level
define('HEADING_TITLE', '<h1><h1>Welcome to ' .STORE_NAME . '</h1>'); /*Replace this line with the headline you would like for your shop. For example: Welcome to My SHOP!*/