<xen:include template="ad_member_view_below_avatar" />
<xen:if is="{$canStartConversation}">
<dl><dd><a href="{xen:link 'conversations/add', '', 'to={$user.username}'}">{xen:phrase start_conversation}</a></dd></dl>
</xen:if>
Edit the templates and move the code appropriately. Open member_view and you should be able to drill down to find the correct template.
The "Start Conversation" Button really should be more visible on the profil page, users are writing on pinboard but they think, it's private..
An example was already provided in the post above: https://xenforo.com/community/threads/start-a-conversation-profile-page.57992/#post-644753Please provide an example of exactly what code should be moved from where to where.
The "Start Conversation" Button really should be more visible on the profil page, users are writing on pinboard but they think, it's private..
An example was already provided in the post above: https://xenforo.com/community/threads/start-a-conversation-profile-page.57992/#post-644753
<xen:if is="{$canStartConversation}">
<a href="{xen:link 'conversations/add', '', 'to={$user.username}'}">{xen:phrase start_conversation}</a>
</xen:if>
<xen:include template="ad_member_view_below_avatar" />
<xen:include template="ad_member_view_below_avatar" />
<xen:if is="{$canStartConversation}">
<a href="{xen:link 'conversations/add', '', 'to={$user.username}'}">{xen:phrase start_conversation}</a>
</xen:if>
Edit the member_view template and add this code:
Code:<xen:if is="{$canStartConversation}"> <a href="{xen:link 'conversations/add', '', 'to={$user.username}'}">{xen:phrase start_conversation}</a> </xen:if>
Directly after this line:
Code:<xen:include template="ad_member_view_below_avatar" />
Like so:
Code:<xen:include template="ad_member_view_below_avatar" /> <xen:if is="{$canStartConversation}"> <a href="{xen:link 'conversations/add', '', 'to={$user.username}'}">{xen:phrase start_conversation}</a> </xen:if>
We use essential cookies to make this site work, and optional cookies to enhance your experience.