Uyumlu XF Sürümleri
Belirli kategorilerde yeni konu aç yerine soru sor butonu ekleyin.
Description:
Instead of opening a new topic, add a question button to certain categories.
Önce
Sonra:
forum_view şablonunda aşağıdaki kod bloğunu bulun:
Aşağıda verdiğimiz kod ile değiştirin:
<xf:if is="$forum.node_id == 18"> 18 yazan yeri kategori id numaranız ile değiştirmeyi unutmayın.
- 2.2.X
- 2.3.X
Belirli kategorilerde yeni konu aç yerine soru sor butonu ekleyin.
Description:
Instead of opening a new topic, add a question button to certain categories.
Önce
Sonra:
forum_view şablonunda aşağıdaki kod bloğunu bulun:
HTML:
<xf:button href="{{ link('forums/post-thread', $forum) }}" class="button--cta" icon="write" rel="nofollow">
{{ $forum.TypeHandler.getTypeActionPhrase('cta') ?: phrase('post_thread') }}
</xf:button>
Aşağıda verdiğimiz kod ile değiştirin:
HTML:
<xf:if is="$forum.node_id == 18">
<xf:button href="{{ link('forums/post-thread', $forum) }}" class="button--cta" icon="write" rel="nofollow">
Soru sor
</xf:button>
<xf:else />
<xf:button href="{{ link('forums/post-thread', $forum) }}" class="button--cta" icon="write" rel="nofollow">
{{ $forum.TypeHandler.getTypeActionPhrase('cta') ?: phrase('post_thread') }}
</xf:button>
</xf:if>
<xf:if is="$forum.node_id == 18"> 18 yazan yeri kategori id numaranız ile değiştirmeyi unutmayın.