I am trying to change the following text in the information box of the left column from "Shipping & Returns" to "Shipping information". I edit the following in includes/languages/english.php:
// information box text in includes/boxes/information.php
define('BOX_HEADING_INFORMATION', 'Information');
define('BOX_INFORMATION_PRIVACY', 'Privacy Notice');
define('BOX_INFORMATION_CONDITIONS', 'Conditions of Use');
define('BOX_INFORMATION_SHIPPING', 'Shipping & Returns');
define('BOX_INFORMATION_CONTACT', 'Contact Us');
When I change 'Shipping & Returns' to 'Shipping information', I get a parse error on line 79. Where is this error coming from? Can't I change the text without getting an error?
