Home  >  Article  >  Backend Development  >  destoon实现会员商铺中指定会员或会员组投放广告的方法_php实例

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

WBOY
WBOYOriginal
2016-06-07 17:16:42823browse

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

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

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

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

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

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

实现代码如下:

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

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

Statement:
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