• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Hướng dẫn ẩn nội dung trong các thẻ code với khách cho xenforo

Admin

Well-Known Member
Staff member
Administrator
Chức năng:
Ẩn nội dung trong thẻ code, html, php với khách và yêu cầu đăng nhập hoặc đăng ký thành viên.
Hướng dẫn:
1. Ẩn nội dung trong thẻ code
- Vào Admincp > mở template bb_code_tag_code xóa hết đi và thay bằng
HTML:
<xen:require css="bb_code.css" />
 
<div class="bbCodeBlock bbCodeCode">
    <div class="type">{xen:phrase code}:</div>
<xen:if is="!{$visitor.user_id}">
        Bạn phải <a href="{xen:link register}"><strong>đăng ký</strong></a> hoặc <a href="{xen:link login}"><strong>đăng nhập</strong></a> để xem nội dung này.
<xen:else />
    <pre>{xen:raw $content}</pre><xen:comment><!-- content is escaped via parser --></xen:comment>
</xen:if>
</div>

2. Ẩn nội dung trong thẻ html
- Mở tiếp template bb_code_tag_html xóa hết đi và thay bằng
HTML:
<xen:require css="bb_code.css" />
 
<div class="bbCodeBlock bbCodeHtml">
    <div class="type">{xen:phrase html}:</div>
<xen:if is="!{$visitor.user_id}">
        Bạn phải <a href="{xen:link register}"><strong>đăng ký</strong></a> hoặc <a href="{xen:link login}"><strong>đăng nhập</strong></a> để xem nội dung này.
<xen:else />
    <pre>{xen:raw $content}</pre><xen:comment><!-- content is escaped via parser --></xen:comment>
</xen:if>
</div>
3. Ẩn nội dung trong thẻ php
- Mở tiếp template bb_code_tag_php xóa hết đi và thay bằng
HTML:
<xen:require css="bb_code.css" />
 
<div class="bbCodeBlock bbCodePHP">
    <div class="type">{xen:phrase php}:</div>
<xen:if is="!{$visitor.user_id}">
        Bạn phải <a href="{xen:link register}"><strong>đăng ký</strong></a> hoặc <a href="{xen:link login}"><strong>đăng nhập</strong></a> để xem nội dung này.
<xen:else />
    <div class="code">{xen:raw $content}</div><xen:comment><!-- content is escaped via parser --></xen:comment>
</xen:if>
</div>
Để ẩn với thành viên chưa kích hoạt bạn làm như sau
Thay
HTML:
<xen:if is="!{$visitor.user_id}">
Thành
HTML:
<xen:if is="!{$visitor.user_id}  OR {$user.user_state} != 'valid'">
Lưu lại là xong
Chúc các bạn thành công!
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top