Help Chèn quảng cáo vào cuối bài viết đầu tiên thread xenforo 2

code chính xác phải là
Mã:
<xf:if is="{$post.position} % {$xf.options.messagesPerPage} == 0 AND {$post.Thread.reply_count} > 0"> Ads code here </xf:if>
Mình sử dụng post_macros và chèn vào sau đoạn code dưới đây:
Mã:
<xf:if is="$post.isFirstPost()">
 <xf:macro template="custom_fields_macros" name="custom_fields_view"
arg-type="threads"
arg-group="after"
 arg-onlyInclude="{$thread.Forum.field_cache}"
arg-set="{$thread.custom_fields}"
</xf:if>
Kết quả cuối cùng là
Mã:
<xf:if is="$post.isFirstPost()">
 <xf:macro template="custom_fields_macros" name="custom_fields_view"
arg-type="threads"
arg-group="after"
 arg-onlyInclude="{$thread.Forum.field_cache}"
arg-set="{$thread.custom_fields}"
</xf:if>
<xf:if is="{$post.position} % {$xf.options.messagesPerPage} == 0 AND {$post.Thread.reply_count} > 0"> Ads code here </xf:if>
Làm sao cho nó chỉ hiển thị qc ở bài viết chính, phàn bình luận ko hiển thị qc vậy anh ?
 
Làm sao cho nó chỉ hiển thị qc ở bài viết chính, phàn bình luận ko hiển thị qc vậy anh ?
1. Nếu chỉ muốn hiện ở post chính thì thêm đoạn code:
Mã:
<!-- -------->
<center>
    <xf:if is="{$post.position} % {$xf.options.messagesPerPage} == 0">
        <center>
                Chèn code quảng cáo ở đây
        </center>
    </xf:if>
</center>
<!-- -------->
2. Nếu muốn hiện cả ở phần comment thì thêm đoạn code sau
Mã:
<!-- -------->
<center>
    <xf:if is="{$post.position} % {$xf.options.messagesPerPage} == 0 AND {$post.Thread.reply_count} > 0">
        <center>
                Chèn code quảng cáo ở đây
        </center>
    </xf:if>
</center>
<!-- -------->
 
Back
Top