1、浏览器的抬头上写着“Zen Cart!, The Art of …”,怎么修改?

打开includes/languages/english/meta_tags.php
// page title
define(‘TITLE’, STORE_NAME);
//STORE_NAME就是你后台填写的网站名称
// Site Tagline
define(‘SITE_TAGLINE’, ”);
//”这里可填写Title后面的关键词描述
// Custom Keywords
define(‘CUSTOM_KEYWORDS’, ‘ecommerce, open source, shop, online shopping’);
//网站Meta的关键字
// Home Page Only:
define(‘HOME_PAGE_META_DESCRIPTION’, ”);
define(‘HOME_PAGE_META_KEYWORDS’, ”);

2、如何修改ZenCart首页的欢迎词:Congratulations! You have successfully installed

your Zen Cart; E-Commerce Solution.

打开includes/languages/english/index.php这个文件,在如下代码中
// This section deals with the “home” page at the top level with no

options/products selected
/*Replace this text with the headline you would like for your shop. For example: ‘

Welcome to My SHOP!’*/
define(’HEADING_TITLE’, ‘Congratulations! You have successfully installed your

Zen Cart™ E-Commerce Solution.’);
} elseif ($category_depth == ‘nested’) {
// This section deals with displaying a subcategory
/*Replace this line with the headline you would like for your shop. For example: ‘

Welcome to My SHOP!’/
define(’HEADING_TITLE’, ‘Congratulations! You have successfully installed your

Zen Cart™ E-Commerce Solution.’);
}
将Congratulations! You have successfully installed your Zen Cart™ E-Commerce

Solution.这两条句子删除即可。

3、在Zen-cart里如何修改“Powered by Zen Cart”的内容?

如果要定制这段文字,在 \includes\languages\english.php 文件中约第16行:
define(‘FOOTER_TEXT_BODY’, ‘Copyright &copy; ‘ . date(‘Y’) . ‘ <a href=”‘ . zen_href_link(FILENAME_DEFAULT) . ‘” target=”_blank”>’ . STORE_NAME . ‘</a>. Powered by <a href=”http://www.zen-cart.cn” target=”_blank”>Zen Cart</a>’);

4、页眉下面有一大堆烦人的Categories tags,怎么去掉?

后台管理 —> Configuration —> Layout Settings —> Categories-Tabs Menu ON/OFF
把这个属性设为关闭即可!

5、如何调整ZenCart边侧栏的宽度

    Zen-cart默认把左侧栏、中间产品栏、右侧栏排列得很紧密,我想把三间之间的两个空隙弄小一些,怎么办?
    按这个方法,你可以随意调节三者之间的空隙大小。
在后台Configuration —> Layout Setting中,宽度调整
Column Width – Left Boxes
Column Width – Right Boxes

Column Width -Left
Column Width – Right
的值,上面的这类带有Boxes的,是设定显示给我们看的box的大小,而没有Boxes的这类值,则是显示背景的大小。
只要你把下面的值设得比上面的值大,就有空隙出来了。
另外,还可以开启或关闭边栏目状态
Left  Column State
Right Column State
0为关闭,1为开启。