Okenyon Active member Mar 14, 2016 #1 Is there an easy way/link to show a specific usernames resources? For example i would click it and see all my resources.
Is there an easy way/link to show a specific usernames resources? For example i would click it and see all my resources.
Paul B XenForo moderator Staff member Mar 14, 2016 #2 Like this: https://xenforo.com/community/resources/authors/brogan.521/ In a template, you can use: HTML: <a href="{xen:link resources/authors, $visitor}">{xen:phrase your_resources}</a> To check for a valid visitor and resource count, use: HTML: <xen:if is="{$visitor.user_id} && {$visitor.resource_count}"> <a href="{xen:link resources/authors, $visitor}">{xen:phrase your_resources}</a> </xen:if> Upvote 0 Downvote
Like this: https://xenforo.com/community/resources/authors/brogan.521/ In a template, you can use: HTML: <a href="{xen:link resources/authors, $visitor}">{xen:phrase your_resources}</a> To check for a valid visitor and resource count, use: HTML: <xen:if is="{$visitor.user_id} && {$visitor.resource_count}"> <a href="{xen:link resources/authors, $visitor}">{xen:phrase your_resources}</a> </xen:if>
Okenyon Active member Mar 14, 2016 #3 Id basically like to put a link on all users UI that takes them to THIER resources if they have any. Upvote 0 Downvote