ZEN CART判断是否为首页
[php]
if($body_id == ‘index’ && $cPath == ”){
……如果是首页,才显示这里的内容
}
[/php]
或
[php]
if($_GET[‘main_page’] == "" || ($_GET[‘main_page’] == "index" && $_GET[‘cPath’] == "" )){
……如果是首页,才显示这里的内容
}
[/php]
或
[php]
if($this_is_home_page){
……如果是首页,才显示这里的内容
}
[/php]
ZEN CART判断首页,分类页,产品页的问题
$current_page_base == ‘index’
index 代表当前页面,例如联系我们页面是 contact_us,新进商品页面是 products_new
例如目录页
[php]
if($current_page==’index’ and isset($_GET[‘cPath’])){
///当前页面为分类页面
}
[/php]
登录页面,例如
[php]
if($current_page == ‘login’){
///当前页面为登录页面
}
[/php]
如果你有更好的方法,请告知,非常感谢!
发表评论