store_id
您的商店的当前位置在$this->config->get('config_store_id')
。
这意味着如果您在模板中需要它,请编辑标题控制器 ( catalog/controller/common/header.php
) -index()
函数中的一些添加此代码(id 它尚不存在):
$this->data['store_id'] = $this->config->get('config_store_id');
然后在 Your header.tpl
of Your 模板 ( catalog/view/theme/<YOUR_THEME>/template/common/header.tpl
) 中以这种方式使用它:
<?php if ($tore_id == 0) { ?>
<div>Main store</div>
<?php } else { ?>
<div>Subdomain store</div>
<?php } ?>
或者这样:
<div class="container-<?php echo $store_id; ?>"> ... </div>
它在你身上。
编辑:还考虑继续使用更新的 OpenCart(截至 2012 年 12 月 15日的最新版本是 1.5.4.1 ) - 值得重新设计以及它具有的功能和小工具。