Former Member
inherit
guest@proboards.com
255200
0
Nov 24, 2024 6:29:49 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Jun 22, 2018 12:45:19 GMT -8
Hey,
I don't no where to put this, I hope it's okay to ask it here.
Is there a way to make your profile and miniprofile picture a clickable button that can link to a separate webpage? If not currently, could this be something in the future?
|
|
#e61919
Support Staff
224482
0
1
Nov 22, 2024 17:59:24 GMT -8
Scott
“Asking for help isn't giving up... it's refusing to give up.”
24,521
August 2015
socalso
|
Post by Scott on Jun 22, 2018 12:50:26 GMT -8
@aksd, while this could most likely be done with code modification to the templates, this would affect all the users' avatars the same with the same link. It's possible a plugin could be made that would allow this for individual avatars.
You do realize in the member's profile, Personal tab, there is the option for adding a website URL that is clickable.
|
|
Former Member
inherit
guest@proboards.com
255200
0
Nov 24, 2024 6:29:49 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Jun 22, 2018 12:53:25 GMT -8
Ahhh, okay, that makes sense. How do I request a plugin?
Yes, I do realize that, however, I still wish it for the profile and mini profile picture.
Thank you so much!
|
|
#e61919
Support Staff
224482
0
1
Nov 22, 2024 17:59:24 GMT -8
Scott
“Asking for help isn't giving up... it's refusing to give up.”
24,521
August 2015
socalso
|
Post by Scott on Jun 22, 2018 13:03:39 GMT -8
Ahhh, okay, that makes sense. How do I request a plugin?I would start here: Request a Plugin
|
|
#e61919
Support Manager
154778
0
1
Nov 19, 2024 9:09:18 GMT -8
Michael
19,616
May 2010
wiseowl
|
Post by Michael on Jun 22, 2018 15:49:20 GMT -8
Hi,
One of our developers noticed this thread and wanted me to point out that it should be possible using a custom profile field or a website field and a template mod. You'd want to make sure not to hardcode the URL to avoid the problem with affecting all of the avatars like Scott mentioned above.
Edit your Mini-Profile template and replace:
{if $[user.avatar]}
<div class="avatar">$[user.avatar]</div><br />
{/if} with:
{if $[user.avatar]}
<div class="avatar">
{if $[user.website.href]}
<a href="$[user.website.href]" target="_blank">
{/if}
$[user.avatar]
{if $[user.website.href]}
</a>
{/if}
</div>
<br />
{/if}
Then use the Website URL field in the Personal section of your profile to add the URL.
|
|
Former Member
inherit
guest@proboards.com
255200
0
Nov 24, 2024 6:29:49 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Jun 23, 2018 13:10:46 GMT -8
Thank you so much!
|
|