I've had a very hard time learning to customize Zen-Cart (I have 1.3.8a), and I suspect I'm in good company. I've spent literally days searching through the FAQ's here. The answers ARE here, but what is missing is one spot where common questions are addressed for new installations. On my 2nd store design now, I thought I'd share some info that might speed store setup process. None of these are my own, the below info is in the FAQs or the forums here (somewhere!)
Moving Home/Login/Search div UNDER the Header
http://www.zen-cart.com/forum/showthread.php?t=75676
---------------------------------------------
changing text of Featured Products
{StoreRoot}/includes/languages/{MyFolder}/english.php
~ Line #497 : define('TABLE_HEADING_FEATURED_PRODUCTS','Featured Products');
---------------------------------------------
To turn off "Home" in the top center column where category pathing shows elsewhere, edit file tpl_main_page.php
located at {StoreRoot}/includes/templates/{MyFolder}/common
find the block <!-- bof breadcrumb --> <!-- eof breadcrumb -->
and replace with this text ...
<!-- bof breadcrumb -->
<?php if (DEFINE_BREADCRUMB_STATUS == '1' && !$this_is_home_page) { ?>
<div id="navBreadCrumb"><?php echo $breadcrumb->trail(BREAD_CRUMBS_SEPARATOR); ?></div>
<?php } ?>
<!-- eof breadcrumb -->
---------------------------------------------
To eliminate spacings between boxes, edit
{StoreRoot}/includes/templates/{MyFolder}/css/stylesheet.css
find line text:
.leftBoxContainer {
and make the block of text read:
.leftBoxContainer {
border: 1px solid #ffffff;
margin-top: 0px;
margin-bottom: 0px;
}
---------------------------------------------
To change the "Welcome Guest!" text, edit the file
/{StoreRoot}/includes/languages/english/{MyFolder}/index.php
find the line
// Showcase vs Store
and make your edits just below that line.
---------------------------------------------
To change the "Welcome Guest" (actually, the greeting) text format, edit the file:
{StoreRoot}/includes/templates/{MyFolder}/templates/tpl_index_default.php
Find line containing: zen_customer_greeting()
and edit that line (can remove <h2 class="greeting"> and </h2>, for example.
---------------------------------------------
To center the "Welcome Guest!" line, edit file:
{StoreRoot}/includes/templates/{MyFolder}/templates/tpl_index_default.php
Find line, near the top, starting with:
<div class="centerColumn" id="indexDefault"
Under that line is this code:
<?php if (SHOW_CUSTOMER_GREETING == 1) { ?>
<?php echo zen_customer_greeting(); ?>
<?php } ?>
make it read:
<center><?php if (SHOW_CUSTOMER_GREETING == 1) { ?>
<?php echo zen_customer_greeting(); ?>
<?php } ?></center>
---------------------------------------------
To move the entire center column "Welcome" box up or down edit the file:
{StoreRoot}/includes/templates/{MyFolder}/templates/tpl_index_default.php
Find line, near the top:
<div class="centerColumn" id="indexDefault">
make it read:
<div class="centerColumn" id="indexDefault" style="position:relative;top:-6px;">
You can adjust the value for that top variable as desired.
---------------------------------------------
To get rid of the text "Tag Line Here"
http://www.zen-cart.com/forum/showthread.php?t=131647
Note that in that same area you can define how big the logo picture should be.
---------------------------------------------
I hope those are useful to others. Would be nice if other "tips" were also posted in this thread. No questions (unless something is not working as supposed to!), just tips.![]()




I think all the info is good, though, as I've used each and every 1 of the above tips and documented them after I found them to work.


