XenForo Konu görüntülenirken yeni konu ve yeni mesajlar butonları
Uyumlu XF Sürümleri
- 2.2.X
- 2.3.X
Forumunuzda konu görüntülenirken yeni konu ve yeni mesajlar butonları ekleyin.
Kullandığınız temanın thread_view şablonunu açın ve aşağıdaki kodu bulun:
PHP:
<xf:breadcrumb source="$forum.getBreadcrumbs()" />
Hemen altına aşağıdaki kodu ekleyip kaydedin.
PHP:
<xf:if is="{$xf.visitor.user_id} AND in_array({$xf.visitor.user_group_id}, [2, 3, 18, 4, 5])">
<xf:pageaction>
<xf:button href="{{ link('forums/create-thread', $forum) }}" class="button--primary" icon="write" overlay="true" rel="nofollow">
{{ phrase('post_thread') }}
</xf:button>
<xf:button href="{{ link('threads/reply', $thread) }}" data-xf-click="overlay" class="button--primary" icon="reply" rel="nofollow">
{{ phrase('post_reply') }}
</xf:button>
</xf:pageaction>
</xf:if>
GÖRÜNÜM