请教如何将店铺首次注册的“默认模板”调整为其他模板

2016-07-07 16:50 来源:www.chinab4c.com 作者:ecshop专家

请教如何将店铺首次注册的“默认模板”调整为其他模板。

回答:
最简单的方法就是直接到themes\store\default\styles下更改文件夹名字。
要不然就到app\find_password.app.php下找到
/**
* 获取当前店铺所设定的模板名称
*
* @author Garbin
* @return string
*/
function _get_template_name()
{
$store_info = $this->_get_store_info();
$theme = !empty($store_info['theme']) ? $store_info['theme'] : 'default|default';
list($template_name, $style_name) = explode('|', $theme);

return $template_name;
}

/**
* 获取当前店铺所设定的风格名称
*
* @author Garbin
* @return string
*/
function _get_style_name()
{
$store_info = $this->_get_store_info();
$theme = !empty($store_info['theme']) ? $store_info['theme'] : 'default|default';
list($template_name, $style_name) = explode('|', $theme);

return $style_name;
}


default|default第一个是商场的模板,第2个是店铺的模板

太谢谢了