文件位置ECSHOP根目录\includes\init.php
在 $smarty->assign(‘ecs_charset‘, EC_CHARSET);
下面增加 $smarty->assign(‘template_dir‘, ‘themes/‘ . $_CFG[‘template‘]);
在模板中就直接调用
可以参考下面的css调用的方法:
if (!empty($_CFG[‘stylename‘]))
{
$smarty->assign(‘ecs_css_path‘, ‘themes/‘ . $_CFG[‘template‘] . ‘/style_‘ . $_CFG[‘stylename‘] . ‘.css‘);
}
else
{
$smarty->assign(‘ecs_css_path‘, ‘themes/‘ . $_CFG[‘template‘] . ‘/style.css‘);
}
{$ecs_css_path}
{$template_dir}
就OK了.
本文出自 “MyPan's blog” 博客,请务必保留此出处http://mypan.blog.51cto.com/713912/1549097
原文地址:http://mypan.blog.51cto.com/713912/1549097