removing underscores from template header

Hey guys, im a noob to zencart and php, but have tried for hours… I’m trying to remove the underscores from the header for “shopping cart” at the top of the page. I had this issue with the top navigation as well but was able to fix that buy using this code below. but I not able to do this for the shopping cart, you can see near the top it says HEADER_SHOPPING_CART_EMPTY

I uploaded the black pure template to zen cart, by using FTP, the files seem to be there, the templeate and the language folder when i go to includes>templates>black pure>languages

any help would be much appreciated!
URL: recordsent.com

<?PHP define('MONTHLY_SPECIALS_PAGE', 'MONTHLY SPECIALS PAGE'); this code worked for the top navigation but not for the shopping cart, I found the info for the shoppoing cart in another folder, but it was a no go.

before you output ‘HEADER_SHOPPING_CART_EMPTY’

try to replace the undercores with 1 space

[php]

<?php $header = 'HEADER_SHOPPING_CART_EMPTY'; //variable with header and underscore $header = str_replace("_"," ",$header); //variable with header and no underscore ?>

[/php]

Its not ment to be changed, its supposesd to be replaced with something. Whatever it that thing happens to be is missing. its a place holder of sorts. I’d email whoever made the template or go to zencart’s forums and see if anyone else is having that issue.

Sponsor our Newsletter | Privacy Policy | Terms of Service