XF 2.2 Is it possible to delete these three dots after "Post tread...

Solution
Remove them from the forum_overview template
HTML:
<xf:if is="$xf.visitor.canCreateThread() OR $xf.visitor.canCreateThreadPreReg()">
    <xf:button href="{{ link('forums/create-thread') }}" class="button--cta" icon="write" overlay="true" rel="nofollow">
        {{ phrase('post_thread...') }}
    </xf:button>
</xf:if>

{{ phrase('post_thread...') }} to {{ phrase('post_thread') }}
Remove them from the forum_overview template
HTML:
<xf:if is="$xf.visitor.canCreateThread() OR $xf.visitor.canCreateThreadPreReg()">
    <xf:button href="{{ link('forums/create-thread') }}" class="button--cta" icon="write" overlay="true" rel="nofollow">
        {{ phrase('post_thread...') }}
    </xf:button>
</xf:if>

{{ phrase('post_thread...') }} to {{ phrase('post_thread') }}
 
Solution
Remove them from the forum_overview template
HTML:
<xf:if is="$xf.visitor.canCreateThread() OR $xf.visitor.canCreateThreadPreReg()">
    <xf:button href="{{ link('forums/create-thread') }}" class="button--cta" icon="write" overlay="true" rel="nofollow">
        {{ phrase('post_thread...') }}
    </xf:button>
</xf:if>

{{ phrase('post_thread...') }} to {{ phrase('post_thread') }}
Thank you so much! :giggle:
 
Top Bottom