Brain freeze.
what is the very first page to load when somebody goes to zencart?
Thanks
andyb
Brain freeze.
what is the very first page to load when somebody goes to zencart?
Thanks
andyb
Learning Fast.
Eden Craft Supplies
Typical install loads the main_page which has text that can be found in admin panel under tools define pages I think it is. There is an override though in the configuration settings that can have the first page be something else. I don't recall which area it is located, possibly my store or layout settings I'm thinking.
What seems to be the issue in more detail?
ZC Installation/Maintenance Support <- Site
Contribution for contributions welcome...
ZC Installation/Maintenance Support <- Site
Contribution for contributions welcome...
Took a gander at the requirements for google's verification by use of a meta tag, they do only look for the tag in the "root" of the site, so if the first page is the default first page (and not say a category) then the code should be able to be dded to: includes/modules/pages/index/header_php.php and would only show up on the first page. Wwhile minor in quantity of information, this would minimize the amount of content loaded to the browser as it would not be loaded to every page, just the index/main paage.
Further I was wrong in my first post, main_page is not the first page, that is the tag that is used to identify what page (which follows) is/should be loaded.
ZC Installation/Maintenance Support <- Site
Contribution for contributions welcome...
ZC Installation/Maintenance Support <- Site
Contribution for contributions welcome...
There are no head tags in includes/modules/pages/index/header_php.php
Learning Fast.
Eden Craft Supplies
Correct. The header_php.php content is loaded between them. Have to look at the code from a bigger perspective, a file is loaded (I think it is the template file I described before) that kicks off the top of the header, but then branches out to collect other information and then to display it. Header_php.php (and other files ending with .php in that directory) are loaded before the body content is loaded. You may have to escape the code a little to display html or echo the content, so for example may need to add: ?><Meta info /><?php
ZC Installation/Maintenance Support <- Site
Contribution for contributions welcome...