我们有一个多店铺设置,我想为每个商店稍微更改模板。我仔细查看了现有的代码并找到了这些代码:
$this->config->get('config_store_id')
$this->load->model('setting/store');
$results = $this->model_setting_store->getStores();
$this->model_setting_setting->getSetting('config', $order_info['store_id']);
第一行只返回默认商店ID。即使我们没有订购细节,我也希望这项工作能够实现。
获取商店ID的最可靠方式是什么?
答案 0 :(得分:1)
当前商店ID位于$this->config->get('config_store_id')
它会在index.php
文件
if ($store_query->num_rows) {
$config->set('config_store_id', $store_query->row['store_id']);
} else {
$config->set('config_store_id', 0);
}