Home > php教程 > php手册 > body text

destoon实现会员商铺中指定会员或会员组投放广告的方法,destoon投放广告

WBOY
Release: 2016-06-13 09:26:47
Original
1491 people have browsed it

destoon实现会员商铺中指定会员或会员组投放广告的方法,destoon投放广告

本文实例讲述了destoon实现会员商铺中指定会员或会员组投放广告的方法,对destoon开发来说有很好的实用价值。分享给大家供大家参考,具体方法如下:

一、指定会员属性来投放广告

如果想在同一个位置显示广告的,可以在模板文件夹template\default\homepage下的 side.htm 文件里增加:

{if $COM[vip]}
{else}
显示的AD(可以调用网站广告管理里的调用方式)
{/if}

Copy after login

详解:以上代码的意思是,VIP不显示广告,其他会员则显示,可以很好的体现出VIP的优势,值得应用。

二、指定会员组来投放广告

实现代码如下:

{if $COM[groupid]==x}
{else}
显示的AD(可以调用网站广告管理里的调用方式)
{/if}

Copy after login

希望本文所述方法对大家destoon开发有所帮助。

destoon 会员组对应的会员组图标怎设置?

我的实现了不同会员组显示不同图标,演示站:江西南康网上家具城 在模板文件夹下的tag文件夹,找到list-company.htm和list-com.htm,修改相应的代码,代码如下:{if $t[groupid] == "7"}钻石会员{/if}{if $t[groupid] == "8"}皇冠会员{/if}{if $t[groupid] == "9"}金冠会员{/if}
 

destoon怎调用会员组名称

如果这里固定是“参展商”这个名字的话 , 那你就直接写“参展商”算了。。。
 

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!