Gamer Profiles - PixelExit.com

Gamer Profiles - PixelExit.com 1.0.3

No permission to download
For some reason, the gaming icons are not showing in the user postbit for me anymore. I've tried uninstalling and redownloading the add-on. Can someone here tell me what I should be looking for in the message_user_info template? I'm asking because I'm assuming that maybe some info is missing in the template that is causing it not to show on the forums. It's also worth noting that in the member pop-up card, the icons are showing.
 
@Steve F , Just a heads up for a quick possible update to this add-on.....

Youtube's URL structure changed for profiles.

They no longer use the youtube/user/channelname structure

It's now simply just: https://www.youtube.com/user/ which redirects to something like https://www.youtube.com/c/user

eg: https://www.youtube.com/gamerdevils is my channel.

but with your addon when you put the username in it tries to bring it to https://www.youtube.com/user/gamerdevils and says it's not valid.


Just thought I'd bring this to your attention so you can possibly release a quick fix or update to the add-on. :)
 
I've seemed to forget how to properly add custom fields/icons with this.
followed the faq but cant seem to get the instagram icon to show or link correctly.

can i get a little help please?
 
Hey guys just a heads up @Steve F was in the hospital all last week and is finally out recovering. It may be a while until he gets back into the swing of things.

I'm a little out of touch with this add-on but I'll try to catch up and answer the outstanding questions soon.
 
So i have everything checked in the style to show the icons but im still running into a problem of getting the icons to show in the post and profile
d5952e8aa9bc42278954fe5d786df968.png
94b6b5f35d524f19aceff24e4faa6233.png


I use Fusion Gamer Style 1.5.12

Also can we get battle net and discord added?
 
is it possible to add linkedin, google, instagram, or just have blank address fields to link to ? like a personal website etc ?
https://xenforo.com/community/resources/gamer-profiles-pixelexit-com.3678/field?field=faq

So i have everything checked in the style to show the icons but im still running into a problem of getting the icons to show in the post and profile
d5952e8aa9bc42278954fe5d786df968.png
94b6b5f35d524f19aceff24e4faa6233.png


I use Fusion Gamer Style 1.5.12

Also can we get battle net and discord added?
Set permissions? ANd does it show on the Member Card or profile page?
 
There is an example how to add new ones: https://xenforo.com/community/resources/gamer-profiles-pixelexit-com.3678/field?field=faq

But, I had added DestinyTracker.com in a previous version if you want to use that. If you want to use that just create the 2 Custom User Fields exactly like the FAQ example. The template and icon is already in place.

Edit: Looks like Destiny Trials Report uses the same format in the URL so you can likely just replace any instance of destinytracker.com in the template with destinytrialsreport.com.

Template: pe_extra_gamer_profiles
 
Yes I am using DestinyTracker now, but I know my community would love to get stats quickly by hovering over a Trials button :p

By the way, how can I make the hovering effect with Destiny Tracker, same as the PSN, XBL and STEAM?

I know Destiny Tracker have a tool to make signatures - maybe that can be implemented :)

 
@Steve F I hope you are feeling better.

Have you looked at the code of Xenforo 2.0? Would be great to have this add-on on the compatible list when the new Xenforo comes out.
 
I added a new user selection. How do I go about changing the image on it? Right now it shows a blank display.
 
You'll need to define that with CSS.

If you followed the example in the FAQ then just look how the others are done.
 
You'll need to define that with CSS.

If you followed the example in the FAQ then just look how the others are done.
It doesn't explain how to allow an image in the FAQ from what I can tell.

Here's what I have in the css

Code:
<xen:if is="@enableResponsive">
@media (max-width:@maxResponsiveNarrowWidth)
{   
<xen:if is="@gamerIcon24">
    .memberCard .playerIcon
    {
        background-image: url('styles/gamerprofiles/player.png');
        background-repeat: no-repeat;
    }

    .playerIcon { background-position: 0px 0px; }
   
</xen:if>
}
</xen:if>

The file player.png is in the correct location in the FTP. It's also 24x24 dimension. I've tried several things with the { background-position: including 24px, removing it all together, and then even removing .playerIcon all together.

Here is my pe_extra_gamer_profiles file of it:

Code:
<xen:require css="pe_extra_gamer_profiles.css" />

<xen:if is="{$user.customFields.playerUserProfile}">
    <li class="iconContainer">
        <a href="http://player.me{$user.customFields.playerSystem}/{$user.customFields.playerUserProfile}" class="gamerIcon playerIcon Tooltip" data-offsetX="-4" target="blank" title="Player.Me: {$user.customFields.playerProfile}"></a>
    </li>
</xen:if>
 
Remove the if statements, no need for them as your loading it with a media query and will only show in narrow width.
 
Top Bottom