david64 Posted December 21, 2004 Posted December 21, 2004 If anyone else had trouble removing this nasty little piece of code, hereis how you do it. Download the index.php (the main one, not language) search the code for all "HEADING_TITLE" entries and then remove them all. e.g. <td class="pageHeading"><?php echo HEADING_TITLE; ?></td> to <td class="pageHeading"></td>
meadetelescopes Posted December 29, 2004 Posted December 29, 2004 clean up the index.php its located in main direcotry, if you want to remove any where else just look up the file name find it and edit it, and remove your heading.
meadetelescopes Posted December 29, 2004 Posted December 29, 2004 oh crap this topic is already tells you, i though it was a question, :P, sorry just a little sleepy, should of read it all the way through,
Guest Posted January 5, 2005 Posted January 5, 2005 :'( Wow, took me hours in this forum to find out where to remove that "What's New Here" Text... My question is: How do I just change the text ??? Have looked in almost every file to see if there is something in there that references it. Please advise.. Many Thanks and Many Blessings Magic7 :blink: :blush: (newbie..can you tell?) :rolleyes: :blink:
Guest Posted January 5, 2005 Posted January 5, 2005 :'( Wow, took me hours in this forum to find out where to remove that "What's New Here" Text... My question is: How do I just change the text ??? Have looked in almost every file to see if there is something in there that references it. Please advise.. Many Thanks and Many Blessings Magic7 :blink: :blush: (newbie..can you tell?) :rolleyes: :blink: <{POST_SNAPBACK}> Just go to: ... catalog\includes\languages in all the main language file like english.php, usually at line number 79 you will find this definition: define('BOX_HEADING_WHATS_NEW', 'What\'s New?'); Just replace it by the text you like to see on your site. Bye :thumbsup:
Guest Posted January 6, 2005 Posted January 6, 2005 Thank you so very much !!! :D Just go to:... catalog\includes\languages in all the main language file like english.php, usually at line number 79 you will find this definition: define('BOX_HEADING_WHATS_NEW', 'What\'s New?'); Just replace it by the text you like to see on your site. Bye :thumbsup: <{POST_SNAPBACK}>
checkstore Posted January 7, 2005 Posted January 7, 2005 That was useful<g>. Where do you change these two lines: What's New Here?Welcome Guest! Would you like to log yourself in? Or would you prefer to create an account? They appear at the top of the catalog page.
checkstore Posted January 7, 2005 Posted January 7, 2005 Let me clarify my question: I know where to change What's New Here? It is: define('HEADING_TITLE', 'What\'s New Here?'); in: /public_html/catalog/includes/languages/english/index.php. What I want to change (or remove) is this line: Welcome Guest! Would you like to log yourself in? Or would you prefer to create an account? Where do I change it or remove it?
Guest Posted January 10, 2005 Posted January 10, 2005 To remove the famous (or infamous) "Welcome Guest..." message, just put in remark all echo tep_customer_greeting() function call in index.php page (usually at line 301).
dogmir Posted March 13, 2005 Posted March 13, 2005 To remove the famous (or infamous) "Welcome Guest..." message, just put in remark all echo tep_customer_greeting() function call in index.php page (usually at line 301). <{POST_SNAPBACK}> when i do that my page background turns white and it messes with my css...any thoughts thanks
Rock_Chick Posted May 21, 2005 Posted May 21, 2005 Just wanted to say hey thanks from us Newbies regarding this topic.. I've spent the past 36 hours trying to figure this bugar out!
AverageJoe Posted May 23, 2005 Posted May 23, 2005 Thanks everyone for the tips so far. What I would like to know is how to change "What's new here" to the name of the category that you're in. I've tried using the $category variable but it doesn't seem to work. Thanks for all the help.
AverageJoe Posted May 23, 2005 Posted May 23, 2005 Oh sorry, I was thinking about the "Let's See What We Have Here" instead of the "What's new here" line. First post on this forum and I mess up :rolleyes:
Guest Posted June 26, 2005 Posted June 26, 2005 I went into ...catalog/includes/languages/english.php to change the define('BOX_HEADING_WHATS_NEW', 'WHAT\'S NEW?'); to say something diff......I recieved the error message below: Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /home/themagaz/public_html/catalog/includes/functions/general.php:1259) in /home/themagaz/public_html/catalog/includes/functions/sessions.php on line 67 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/themagaz/public_html/catalog/includes/functions/general.php:1259) in /home/themagaz/public_html/catalog/includes/functions/sessions.php on line 67 I still recieve this message even after I swith the text back to the original. Please...Please help me because my site does not work now :( ben
annispanties Posted September 26, 2007 Posted September 26, 2007 To only erase "what's new here" and leave other headings or to change it to something else, just go to /includes/languages/english/index.php and scroll to the bottom and edit: } elseif ($category_depth == 'top') { define('HEADING_TITLE', 'What/s New Here?'); Change or delete, that's it.
DejaVu Posted October 27, 2007 Posted October 27, 2007 Below that there are 3 empty table cells. It's still not aligning my tables correctly. How would I align the left column boxes, product listing & right column boxes across the top? I know it's involved and I also know its in the main index.php. Just cant work it out! --EDIT-- I was right. Table/TR/TD tags needed removing, and after a lot of trial and error I sussed it. I would explain, but it was such a long winded process I'm not sure, I'd get it right! As long as you have a good idea on the coding for HTML tables, you may be able to work it out (I dont!) LOL
camstans Posted November 3, 2007 Posted November 3, 2007 hi, how can i remove the arrow and little box from whats new? thanks
c-sargent Posted November 4, 2007 Posted November 4, 2007 To only erase "what's new here" and leave other headings or to change it to something else, just go to /includes/languages/english/index.php and scroll to the bottom and edit: } elseif ($category_depth == 'top') { define('HEADING_TITLE', 'What/s New Here?'); Change or delete, that's it. Thanks for this, has been bugging me for hours!
kevinb84 Posted November 20, 2007 Posted November 20, 2007 For everything that is good and holy THANK YOU And I'm glad to see it wasn't just me having problems!
kevinb84 Posted November 20, 2007 Posted November 20, 2007 How about the image to the right of that? I've tried deleting that out of the index.php but no such luck.
godfly Posted June 13, 2009 Posted June 13, 2009 If anyone else had trouble removing this nasty little piece of code, hereis how you do it. Download the index.php (the main one, not language) search the code for all "HEADING_TITLE" entries and then remove them all. e.g. <td class="pageHeading"><?php echo HEADING_TITLE; ?></td> to <td class="pageHeading"></td> I tried creating a new row at the bottom and moving it there.. even tried deleting it.. and it's not affecting the site. I still see What's New Here. I know I can edit it using the index within language but what if I just wanna move it to the bottom? Is this an old hack that do not work anymore?
godfly Posted June 13, 2009 Posted June 13, 2009 I tried creating a new row at the bottom and moving it there.. even tried deleting it.. and it's not affecting the site. I still see What's New Here. I know I can edit it using the index within language but what if I just wanna move it to the bottom? Is this an old hack that do not work anymore? Please disregard this.. I was being stupid.. I was editing <td class="pageHeading"><?php echo HEADING_TITLE; ?></td> on line 254 instead of.. <td class="pageHeading"><?php echo HEADING_TITLE; ?></td> which is on line 312
Recommended Posts
Archived
This topic is now archived and is closed to further replies.