Ok,
Since I lost my head and ranted about how hard things are to fix, I thought I'd post something that I think I figured out, but want some verification so that the next update doesn't make me crazy.
In an attempt to make the Header Sales Text go away I tried editing the file /includes/languages/english/birdoasis/header.php
By commenting out the "define('HEADER_SALES_TEXT', 'Enjoy more wild feathered friends this winter!');" line I had hoped to have no text show up at all.
However what I got was HEADER_SALES_TEXT replacing my text.
So I searched for the file that included that statement and found it in:
/includes/templates/mytemplatefolder/common/tpl_header.php
The line was an if statement. "if (HEADER_SALES_TEXT != '' etc etc.
I thought about commenting that one out too but saw that other if statements were attached. Then it clicked.
This if statement was looking for an empty define statement. So instead of just erasing my sales text in header.php, I replaced it with spaces like this.
define('HEADER_SALES_TEXT', ' ');
So now text is showing at all.
I think I did this right. Could someone please verify this for me?



