1、在楼主帖子标题下内容上显示
后台模板(page_dispbbs) template.html(0) 找到
<xsl:if test="$mofaface !='''' and $mofaface !=''0''"><div style="float:right;margin-right:20px;"><a href="javascript:DispMagicEmot({$mofaface},350,500)"><img src="http://www.51one.net/tobbs/dvbbs/dv_plus/tools/magicface/gif/{$mofaface}.gif" border="0" alt=""/><br />魔法表情<br/>点击重放</a></div>
<script type="text/javascript" language="javascript">
LoadMagicEmot(<xsl:value-of select="$mofaface" />,<xsl:value-of select="/post/postinfo/@topicid"/>);
</script>
</xsl:if>
</xsl:if>
<div style="{$bodystyle}margin-top:10px;word-wrap : break-word ;word-break : break-all ;" onload="this.style.overflowX=''auto'';">
<xsl:choose>
<xsl:when test="@parentid =0 and /post/postinfo/@getmoneytype=3"><xsl:call-template name="checkgetmoney" /></xsl:when>
<xsl:otherwise><xsl:value-of select="@body" disable-output-escaping="yes"/></xsl:otherwise>
</xsl:choose>
</div>
<xsl:if test="@parentid = 0">
<div>
<hr/>
在下面添加:
<!--===================首贴加广告==========================-->
<xsl:if test="/post/postinfo/@star =1 and position()=1">
<iframe id="dv120_ad" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" src="http://www.51one.net/tobbs/dvbbs/dv120_ad.htm" width="468" height="60"></iframe>
<br />
</xsl:if>
其中的width="468" height="60"可以根据你广告内容调整。
然后新建一个dv120_ad.htm 放到论坛跟目录,文件内容,就是您的广告代码。
2、在楼主签名下显示
后台模板(page_dispbbs) template.html(0) 找到
<xsl:value-of select="$postinfo" disable-output-escaping="yes"/>
</div></xsl:if>
在下面添加
<xsl:if test="/post/postinfo/@star =1 and position()=1">
<iframe id="dv120_ad" marginwidth="0" marginheight="0" frameborder="0" scrolling="no"
src="dv120_ad.htm" width="468" height="60"></iframe>
<br />
</xsl:if>
其中的width="468" height="60"可以根据你广告内容调整。
然后新建一个dv120_ad.htm 放到论坛跟目录,文件内容,就是您的广告代码。

