As stated how do I remove the Welcome to RV Solar Systems from the main page.
Cheers
Peter
As stated how do I remove the Welcome to RV Solar Systems from the main page.
Cheers
Peter
What ever your doing remember to KISS ( Keep It Simple Stupid )
Admin > Configuration > Layout Settings > Customer Greeting - Show on Index Page
It is offthats why I'm working on another site (as per logo sidebox posts) think I've stuffed the main one up
and it's one of Clydes templates and I'm not sure if I sould keep it shame I like it http://www.rvsolarsystems.co.uk/store/
What ever your doing remember to KISS ( Keep It Simple Stupid )
OK, that's not the customer greeting, but h1#indexDefaultHeading.
The /template_default/ version of tpl_index_default.php has
<div class="centerColumn" id="indexDefault">
<h1 id="indexDefaultHeading"><?php echo HEADING_TITLE; ?></h1>
so you could comment the h1 out of your template copy, or you could add to your stylesheet
#indexDefaultHeading {display: none;}
Another option would be to check if the constant HEADING_TITLE is used anywhere else, and if not, redefine that to '' (two single quotes) so there will be no h1 content.