XF 2.2 How to add "post question" button ?

pvpers

Member
Hello, how can i add this button for question category ?
1741350205368.webp
1741350353843.webp

Is there a solution via admin panel? Or are these codes the only solution?

Code:
<xf:if is="$forum.node_id == 18">
    <xf:button href="{{ link('forums/post-thread', $forum) }}" class="button--cta" icon="write" rel="nofollow">
        Post question
    </xf:button>
<xf:else />

Thank you.





How did i solve ?

Find (forum_view) :
Code:
    <xf:button href="{{ link('forums/post-thread', $forum) }}" class="button--cta" icon="write" rel="nofollow">
        {{ $forum.TypeHandler.getTypeActionPhrase('cta') ?: phrase('post_thread') }}
    </xf:button>

Change :
Code:
<xf:if is="$forum.forum_type_id == 'question'">
    <xf:button href="{{ link('forums/post-thread', $forum) }}" class="button--cta" icon="write" rel="nofollow">
        Post question
    </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>
 
Last edited:
Back
Top Bottom