New Post Button in Post

New Post Button in Post

richard Staff Sergeant
Bronze Member
badge id 104 You Are Richer
Sep 11, 2021
3,369
716
$3,281
thanks to dear member @richard submitted a new resource:

New Post Button in Post - New Post Button in Post

Result:
View attachment 50813
ACP --> Template --> thread_view and find:
Code:
<xf:breadcrumb source="$forum.getBreadcrumbs()" />
Replace with the code below:
Code:
<xf:breadcrumb source="$forum.getBreadcrumbs()" />
<xf:pageaction if="$forum.canCreateThread()">
    <xf:button href="{{ link('forums/post-thread', $forum) }}" class="button--cta" icon="write">
        {{ phrase('post_thread') }}
    </xf:button>
</xf:pageaction>

Read more about this resource...
 
Back
Top