PDA

View Full Version : Profile Enhancements - GamerCards Block in Profile Sidebar and Postbit


Pages : 1 [2] 3

Canis Firebrand
09-23-2010, 03:50 PM
Great mod and I love the way it looks in the member profile screen.

One wish item from me.

Currently, you have a single on/off option to turn off the gamer cards from being shown or not.
Would it be terribly hard to have a toggle option for each one?

On my board, some people have a PSN id listed but didn't do the portable gamer card thing. Therefore, they see a blank image in their profile. I want the XBox gamer card, etc to show.
So, what I had to do was modify the code to comment out the PSN portable gamer card section so it doesn't load at all.

PreciseDemise
10-23-2010, 09:01 PM
Microsoft seem to have been bastards and switched up all the URL's to Add Friends etc to JavaScript.b As a result, this "http://live.xbox.com/en-US/profile/FriendsMgmt.aspx?gt=blueice26&act=Add" has become buried in here somewhere: <script type="text/javascript" language="javascript">
//<![CDATA[
function FriendCenterObject() {
var fcAction = function(actionUrl, gamerTag, responseHandler) {
responseHandler = responseHandler || function(response) {
if (response.status != 0) {
DisplayMessageDialog('Error', response.view, 'Close', null, MessageLevelType.Error);
}
else {
DisplayMessageDialog('Message', response.view, 'Close', FriendCenter.RefreshContentAction);
}
}

$.post(actionUrl, { 'gamerTag': gamerTag }, responseHandler);
};

this.AcceptFriendRequest = function(gamerTag) {
fcAction('/en-GB/FriendCenter/AcceptFriendRequest', gamerTag);
return false;
};

this.DeclineFriendRequest = function(gamerTag) {
DisplayConfirmationDialog(
'Decline Friend Request',
'Are you sure you want to decline the friend request?',
'Yes',
'No',
function() {
fcAction('/en-GB/FriendCenter/DeclineFriendRequest', gamerTag);
}, null, '', MessageLevelType.Warning);
return false;
};

this.CancelFriendRequest = function(gamerTag) {
DisplayConfirmationDialog(
'Cancel Pending Request',
'Are you sure you want to cancel your pending friend request?',
'Yes',
'No',
function() {
fcAction('/en-GB/FriendCenter/CancelFriendRequest', gamerTag);
}, null, '', MessageLevelType.Warning);
return false;
};

this.AddFriend = function(gamerTag) {
gamerTag = $.trim(gamerTag); // trim leading and trailing whitespaces
if (gamerTag != "") {
fcAction('/en-GB/FriendCenter/SendFriendRequest', gamerTag);
}
return false;
};

this.RemoveFriend = function(gamerTag) {
DisplayConfirmationDialog(
'Remove',
'Are you sure you want to remove this player from your friends list?',
'Yes',
'No',
function() {
fcAction('/en-GB/FriendCenter/RemoveFriend', gamerTag);
}, null, '', MessageLevelType.Warning);
return false;
};

this.BlockFriend = function(gamerTag) {
DisplayConfirmationDialog(
'Block User',
'Are you sure you want to block this player from all further communications?',
'Yes',
'No',
function() {
fcAction('/en-GB/FriendCenter/BlockFriend', gamerTag);
}, null, '', MessageLevelType.Warning);
return false;
};

this.RefreshContentAction = function(){};
};
var FriendCenter = new FriendCenterObject();
//]]></script>Which means all the hard coded stuff is no worthless as it leads to an "Oops" page. Any chance of a fix or is is just a case of stripping all the fat from the pop-up?

Devil_Dog
10-24-2010, 12:54 AM
Microsoft seem to have been bastards and switched up all the URL's to Add Friends etc to JavaScript.b As a result, this "http://live.xbox.com/en-US/profile/FriendsMgmt.aspx?gt=blueice26&act=Add" has become buried in here somewhere: <script type="text/javascript" language="javascript">
//<![CDATA[
function FriendCenterObject() {
var fcAction = function(actionUrl, gamerTag, responseHandler) {
responseHandler = responseHandler || function(response) {
if (response.status != 0) {
DisplayMessageDialog('Error', response.view, 'Close', null, MessageLevelType.Error);
}
else {
DisplayMessageDialog('Message', response.view, 'Close', FriendCenter.RefreshContentAction);
}
}

$.post(actionUrl, { 'gamerTag': gamerTag }, responseHandler);
};

this.AcceptFriendRequest = function(gamerTag) {
fcAction('/en-GB/FriendCenter/AcceptFriendRequest', gamerTag);
return false;
};

this.DeclineFriendRequest = function(gamerTag) {
DisplayConfirmationDialog(
'Decline Friend Request',
'Are you sure you want to decline the friend request?',
'Yes',
'No',
function() {
fcAction('/en-GB/FriendCenter/DeclineFriendRequest', gamerTag);
}, null, '', MessageLevelType.Warning);
return false;
};

this.CancelFriendRequest = function(gamerTag) {
DisplayConfirmationDialog(
'Cancel Pending Request',
'Are you sure you want to cancel your pending friend request?',
'Yes',
'No',
function() {
fcAction('/en-GB/FriendCenter/CancelFriendRequest', gamerTag);
}, null, '', MessageLevelType.Warning);
return false;
};

this.AddFriend = function(gamerTag) {
gamerTag = $.trim(gamerTag); // trim leading and trailing whitespaces
if (gamerTag != "") {
fcAction('/en-GB/FriendCenter/SendFriendRequest', gamerTag);
}
return false;
};

this.RemoveFriend = function(gamerTag) {
DisplayConfirmationDialog(
'Remove',
'Are you sure you want to remove this player from your friends list?',
'Yes',
'No',
function() {
fcAction('/en-GB/FriendCenter/RemoveFriend', gamerTag);
}, null, '', MessageLevelType.Warning);
return false;
};

this.BlockFriend = function(gamerTag) {
DisplayConfirmationDialog(
'Block User',
'Are you sure you want to block this player from all further communications?',
'Yes',
'No',
function() {
fcAction('/en-GB/FriendCenter/BlockFriend', gamerTag);
}, null, '', MessageLevelType.Warning);
return false;
};

this.RefreshContentAction = function(){};
};
var FriendCenter = new FriendCenterObject();
//]]></script>Which means all the hard coded stuff is no worthless as it leads to an "Oops" page. Any chance of a fix or is is just a case of stripping all the fat from the pop-up?

Same issue with Xfire

GeometriX_ZA
10-24-2010, 12:10 PM
Great mod! I have one little issue with it though. On my forums, I have users from both the US and EU PSN. I have a user profile field where they can choose their region, but I've been struggling to tie the option into your mod, as the global option results in either US or EU users to have broken popups. Can you recommend a solution?

tele955848
10-30-2010, 07:52 PM
Wird nicht Angezeigt was mache ich falsch ?

8thos
11-25-2010, 05:43 AM
I have vb4.08. Gamercards no longer show up on the right sidebar of Profile. I switched it back over to the left.

BaziCenter
11-25-2010, 05:02 PM
Sorry but I don't have active license right now to check v4.0.8.

Gleedo
11-25-2010, 05:08 PM
Well i have tried and tried but I cant get this to work lol - i know im being thick but i can't figure it out for steam...

I set my steam id to 5 which is the custom field (id) i created and saved the mod settings.

I then goto edit my profile and find the relevant field.

Now, what exactly goes in that field (an actual working string to enter would be good so I can see if the forum is showing it correctly before I try adding mine) ;)

ShawnV
12-04-2010, 05:14 PM
Anyone else having problems with 4.1.0 PL 2?

CoZmicShReddeR
12-05-2010, 12:20 AM
yeah I think I fixed mine I see steamprofile isn't working correctly I just edited mine seems to be fine...

I went to
edit style manager, edit templete, Postbit Template, postbit_gamercards_steam

just replace with this code should work but back up original code if it doesn't work...

<div class="block">
<div class="blockhead">
<span class="blockhead_info"><a class="textcontrol" href="javascript://" onclick="self.close()">{vb:rawphrase close_this_window}</a></span>
<h2><img src="{vb:stylevar imgdir_misc}/gamericons/steam.png" width="16" height="16" alt="" /> {vb:rawphrase bc_gamercards_postbit_steamid}: <a href="http://steamcommunity.com/id/{vb:raw userinfo.steamid}" target="_blank">{vb:raw userinfo.steamid}</a></h2>
</div>
<div class="blockbody">
<div class="blockrow">
<div class="blockrow" align="center"><a href="http://steamcommunity.com/id/{vb:raw userinfo.steamid}" target="_blank"><img src="http://badges.steamprofile.com/profile/steam/{vb:raw userinfo.steamid}.png" alt="" border="0" /></a></div>
<div class="blockrow" style="border-bottom:1px solid #c9c9c9; margin-bottom:5px; width:480px;"></div>
<!-- <div class="blockrow"><a href="steam://friends/add/{vb:raw userinfo.steamid}" target="_blank">{vb:rawphrase bc_gamercards_add_x_friend, {vb:raw userinfo.steamid}}</a></div> -->
<div class="blockrow"><a href="http://steamcommunity.com/id/{vb:raw userinfo.steamid}/friends" target="_blank">{vb:rawphrase bc_gamercards_x_friends_list, {vb:raw userinfo.steamid}}</a></div>
<div class="blockrow"><a href="http://steamcommunity.com/id/{vb:raw userinfo.steamid}/games" target="_blank">{vb:rawphrase bc_gamercards_x_games_list, {vb:raw userinfo.steamid}}</a></div>
<div class="blockrow">{vb:rawphrase bc_gamercards_x_status, {vb:raw userinfo.steamid}}<br /><img src="http://badges.steamprofile.com/profile/extended/steam/{vb:raw userinfo.steamid}.png" alt="" border="0" /></div>
</div>
</div>
<div class="blockfoot"></div>
</div>

Crotan
12-08-2010, 03:10 AM
I have vb4.08. Gamercards no longer show up on the right sidebar of Profile. I switched it back over to the left.

I can confirm that the gamercards don't work on the right hand side on 4.1.0 PL2 as well. Simple solution though to put it back on the left.

Kreyg
12-09-2010, 09:42 AM
Is there going to be a way to place the gamercards on the right side again?

jimmy_bod
12-09-2010, 12:03 PM
I can confirm that it does not works on 4.1 PL2 :(
I can see everything inside the profile but in the forum itself the icons disappeared. No matter which settings I use in the acp.

jimmy_bod
12-15-2010, 07:07 AM
I Upgraded to 3.x and now it works. Great :-)

8thos
12-15-2010, 10:58 AM
I can confirm that the gamercards don't work on the right hand side on 4.1.0 PL2 as well. Simple solution though to put it back on the left.
I have 4.1PL2 and also tried switching it back over to the right and it didn't work. So to the left it will have to stay...

GamerFill
12-16-2010, 06:08 AM
Perfect for GamerFill! Thank you!

C0D3D
12-27-2010, 06:32 PM
I got it to show on the right side of the profile page, I'm using v4.0.8.

I'm not sure what I did but it is now showing on my profile page. I'll try to figure out exactly what I did to make it show.

Result: I think it's the skin that I'm using. I'm using Dark Robotic Verdi Style and among all the other styles, that is the only style that shows the gamerblock on the right.

ShadowStalker
12-29-2010, 11:41 AM
I'm not having any issues on 4.1.0 PL2. Had it installed since 4.0.5 or maybe even earlier.

dippetas
01-01-2011, 12:57 PM
is it possible to have eu psn id card and us psn id card together?

arrow816
01-02-2011, 02:28 PM
Shame,
This does not seem to want to work on the postbit.
I am not getting the icon instead I am just getting the text and well thats just annoying ^,^

TeknoSounds
01-04-2011, 09:38 AM
Shame,
This does not seem to want to work on the postbit.
I am not getting the icon instead I am just getting the text and well thats just annoying ^,^

are you using a custom style? if so you need to place the icon images in the appropriate folder for your style.

jrap
01-04-2011, 08:14 PM
Any idea why I'm seeing "AccessDenied" when trying to access the Playstation images? The link to the profiles work fine, but images are not loading.

Thanks!

C0D3D
01-05-2011, 09:01 PM
Thank you! v4.1, side block on right works now on v408.

ImagineXGU
01-10-2011, 11:26 AM
Whenever I edit and save the GamerCards Block Options, the fields always reset from fieldx back to 0. Is that supposed to happen?

BaziCenter
01-11-2011, 12:45 PM
Because you have to only enter NUMBER in the fields.

TeknoSounds
01-12-2011, 06:52 AM
Umm which is the file I need to get? the vb4 - v3.0.2 or vb4.1 -v1, as it says 3.0.2 is updated for vb4.1...I'm confused?
There are some differences between the files too.

BaziCenter
01-13-2011, 11:59 AM
Umm which is the file I need to get? the vb4 - v3.0.2 or vb4.1 -v1, as it says 3.0.2 is updated for vb4.1...I'm confused?
There are some differences between the files too.
The "bc-gamercards-vb4.1-v1.0" has all features of v3.0.2. But it works only on vB4.1.x, so if you have a vB4.1 you have to install this.
If you have vB4.x install the vb4-v3.0.2!

TeknoSounds
01-14-2011, 02:40 AM
gotcha, thanks for the clarification! :)

Vick98
01-21-2011, 04:04 AM
Very nice job, works great!

PreciseDemise
01-24-2011, 07:53 AM
Is there ANY chance that you switch PSN EU/US chooser from ACP to Profile field?

I, like many others, have both EU and US PSN members on my gaming community, and they have to suffer from the rigidity of the set-up.

Twikitero
01-24-2011, 03:07 PM
Is there ANY chance that you switch PSN EU/US chooser from ACP to Profile field?

I, like many others, have both EU and US PSN members on my gaming community, and they have to suffer from the rigidity of the set-up.

I support this idea ... I too feel the same

hype901
01-29-2011, 04:14 AM
The PSN image is not displaying in profile, but the Xbox one is. Is this a known problem?

dippetas
02-03-2011, 09:58 AM
The PSN image is not displaying in profile, but the Xbox one is. Is this a known problem?
This should be a problem in the field, perhaps the user has written his username in caps or not, the fields are case sensitive, i had the same problem until i found it, also in us profiles the cards takes a day or two to be shown.

@bazicenter is it possible to have psn id cards for both eu and us users? i have lots of users in my gaming forum with accounts on both psn regions. Also is it possible to intergrate playfire game self? in our profile?

ps : here is a gameslef http://www.playfire.com/dippetas/games/?v=box
(http://www.playfire.com/dippetas/games/?v=box)

jaffaman
02-07-2011, 06:32 PM
The PSN image is not displaying in profile, but the Xbox one is.
I am having the same problem with the PSN image has anyone got a fix ?
The PSN I.D link above the image goes to there public trophy ok tho.
I have set the psn portable id version to europe.

TeknoSounds
02-08-2011, 01:31 AM
do you have a custom style? Probably need to upload the icons to that album if so.

jaffaman
02-12-2011, 04:02 PM
Thanks for trying to help but it is not a style issue as far as i can make out as it should get the images from the playstation site.

I have set up a temp user on our forums so that you can see.

User = test
Password = test1

If you go to this thread http://www.csa-squad.co.uk/showthread.php?28125-PlayStation-Network-ID on the second post you can see the PSN image in the postbit when you click it you get a pop-up and there is no image but if you click the name it goes to the PSN Public Trophy page.

See Pic...
https://vborg.vbsupport.ru/external/2011/02/34.jpg

If you go to the users profile you will see the PSN block is the same.

See Pic...
https://vborg.vbsupport.ru/external/2011/02/35.jpg

I have tried putting the psn portable id version on both USA and Europe in the admin options but it's still the same.

Thanks again for any help in advance as far as i know our members have generate the portable ID right but as i do not have a PS3 (yet) i can not test it out could it be that our members have not generate the portable ID right ????

BaziCenter
02-14-2011, 06:12 PM
I checked your site and added my PSNID in the relevant field. As you can see in the link: http://www.csa-squad.co.uk/member.php?3210-test the gamercard shows up correctly.
Tell your users to first generate their gamercards from official PlayStation site(s).

PS: please remove my PSNID!

jaffaman
02-14-2011, 06:21 PM
Thanks for looking in to it for me :) I have remover the PSNID.

I have also set myself up a PSNID even tho i havent got a PS3 yet and i see it works fine.

Is there a way when you click the image it will go to there Public Trophy because at the moment it goes to http://uk.playstation.com/registration/


Thanks again.............Paul

Trystan^
02-18-2011, 11:25 PM
works like a charm,

great mod cheers ;)

DeadSilence_
02-23-2011, 04:16 PM
marked as installed, added to my site. This works great because it's a forum for a gaming charity. Thank you very much for making this :)

PreciseDemise
02-24-2011, 11:03 AM
Is anyone else having a display issue with the new XBox Live GamerCard layout in Profile Home Sidebar? Can only see a very small section of the Card ...

NextGenUpdateFR
03-13-2011, 06:59 PM
Hey mae, oyu're mod is awesome ! Btw how come there is nothing in the vb 4.1.2 postbit ? Any code to add in postbit legacy ? Thanks for the help and youre beast mod

springchiken
03-18-2011, 02:44 PM
I was wondering if you had any plans on adding support for Blizzard Battle.net id system?

rasp187
03-26-2011, 10:51 PM
Works excellently. Thanks!

Mr. Flowers
03-30-2011, 04:27 AM
"* If you have a custom style, you have to copy the gamericons folder in the misc folder of each style!"

That was the key! Thanks great install!

kappeGF
03-31-2011, 10:36 AM
can you upgrade with 3Ds code?

8thos
04-03-2011, 06:53 AM
How do you center the icons in the post bit? They are located on the very far right side right now.

excessive34
04-03-2011, 08:43 AM
does this lower site speed?

TheInsaneManiac
04-03-2011, 05:44 PM
Is it possible to make it substitute the actual field in the about tab with the gamercards instead of having a whole new block?

tandalier
04-09-2011, 07:27 AM
would also like to see an upgrade with the "nintendo 3ds" id

johncosta71292
04-11-2011, 01:48 PM
I cant get the image to show just like jaffaman :(

Crotan
04-11-2011, 03:45 PM
What changes were made with the 4.1 version?

Note: vBulletin 4.1.x users must install the "bc-gamercards-vb4.1-v1.0.zip"!

I have the 3.0.2 version installed on a 4.1.3 vbulletin board and it is working fine besides the right sidebar in profiles. I just checked the thread today and saw the 4.1 version?

johncosta71292
04-12-2011, 12:30 AM
I have 4.1.2 can someone get it working for me please?

MissSavitri
05-11-2011, 06:33 PM
I have this running on my forum, but when I click the steam icon, it says the steam ID of the user and though it shows my user name, the link sends to: http://steamcommunity.com/id/STEAM_0:0:28527636/friends which gives a:

Sorry!

An error was encountered while processing your request:

The specified profile could not be found.

This is happening with everyone's link.

http://pathforgers.com/forums/ for a demo.

Crotan
05-13-2011, 04:00 AM
I have this running on my forum, but when I click the steam icon, it says the steam ID of the user and though it shows my user name, the link sends to: http://steamcommunity.com/id/STEAM_0:0:28527636/friends which gives a:

Sorry!

An error was encountered while processing your request:

The specified profile could not be found.

This is happening with everyone's link.

http://pathforgers.com/forums/ for a demo.

because thats wrong. Don't use that steam ID, use what you would find in their profile hyperlink.

For instance mine is http://steamcommunity.com/id/Crotan where Crotan is my steam ID

Not my steam ID in the STEAM_0:0:XXXXXXXXX form. Pretty sure the users have to set that up in their steam profiles to have names for their hyperlinks if im not mistaken.

MissSavitri
05-13-2011, 10:32 PM
because thats wrong. Don't use that steam ID, use what you would find in their profile hyperlink.

For instance mine is http://steamcommunity.com/id/Crotan where Crotan is my steam ID

Not my steam ID in the STEAM_0:0:XXXXXXXXX form. Pretty sure the users have to set that up in their steam profiles to have names for their hyperlinks if im not mistaken.

Ah, I was going by:

2) For showing the Steam GamerCard, users must do the following:
Login to steamcommunity.com -> Edit my Profile -> Copy the text from the "Custom URL" box into the Steam ID field.
* Steam GamerCard is not official and generates from steamcard.com and steamprofile.com.
Note: Steam postbit pop-up page now support real Steam ID which is: STEAM_X:X:XXXXX.


My username works for me, though it doesn't work for my boyfriend. It gives a 'profile not found' error. (Jumwa on the forums.)

Crotan
05-14-2011, 07:36 PM
Ah, I was going by:

2) For showing the Steam GamerCard, users must do the following:
Login to steamcommunity.com -> Edit my Profile -> Copy the text from the "Custom URL" box into the Steam ID field.
* Steam GamerCard is not official and generates from steamcard.com and steamprofile.com.
Note: Steam postbit pop-up page now support real Steam ID which is: STEAM_X:X:XXXXX.


My username works for me, though it doesn't work for my boyfriend. It gives a 'profile not found' error. (Jumwa on the forums.)

haha, I guess I just learned something too then, I wasn't aware it now supports the traditional Steam ID's.

Have your BF double check his steam ID using: http://steamidfinder.com/

CharlieDelta
05-15-2011, 02:45 PM
I now have two PSN gamercard blocks on the right side?? How do I remove one that is not needed??

Thanks

BaziCenter
05-15-2011, 02:52 PM
I now have two PSN gamercard blocks on the right side?? How do I remove one that is not needed??

Thanks
Go to your style templates and revert this template: 'memberinfo_block_gamercards'

CharlieDelta
05-15-2011, 11:49 PM
Go to your style templates and revert this template: 'memberinfo_block_gamercards'
Hmm. I never made any changes or modifications to this template so I can't revert. Should I uninstall and re-install???

Thank you for the quick reply.

BaziCenter
05-16-2011, 05:17 AM
Should I uninstall and re-install???
NOTE: If you want to upgrade to v3.1 you MUST uninstall your current product first and then install it again because of new added DB codes.

CharlieDelta
05-16-2011, 02:26 PM
NOTE: If you want to upgrade to v3.1 you MUST uninstall your current product first and then install it again because of new added DB codes.

Thanks Bazi, I should have never missed that. :o
Sorry to be a pain in the..........

CharlieDelta
05-16-2011, 03:17 PM
Hi Bazi I have another question.
How would I go about changing the location of the PSN Portable drop down? Rather than in the 'edit settings' I would like to have it in 'general settings' because I have some custom categories.

Thanks.

BaziCenter
05-16-2011, 04:03 PM
Hi Bazi I have another question.
How would I go about changing the location of the PSN Portable drop down? Rather than in the 'edit settings' I would like to have it in 'general settings' because I have some custom categories.

Thanks.
Open the xml file and:
Find:profile_updateprofileReplace with:
profile_updateoptionsFind:
profile_editprofile_startReplace with:
profile_editoptions_startFind:
$psnversion_userfield = $templater->render();
$find = "<!-- end if custom fields -->";
$vbulletin->templatecache['modifyprofile'] = str_replace($find, '<div style="padding:0 15px;">'.$psnversion_userfield.'</div>'.$find, $vbulletin->templatecache['modifyprofile']);Replace with:
$template_hook['usercp_options_messaging'] .= $templater->render();Import the xml again.

CharlieDelta
05-16-2011, 06:04 PM
Open the xml file and:
Import the xml again.

Bazi I thank you!! Worked like a charm.:up: You are the best!

How can I get it on the bottom of that page at the end of 'user customizations'?

rasp187
05-17-2011, 12:03 AM
For some reason the postbit icons show for me on the default vBulletin skin, but not for my modified skins. When I enable them it just shows the text, not the .png icon, and when I right click on the text it shows the exact directory the images are in so I have no idea why they're not displaying. I've re-uploaded them twice to no avail. I have put them in all the misc folders in all of my templates yet it will still only show in the default vBulletin one. I'm not really sure why...

fly
06-04-2011, 09:07 PM
NOTE: If you want to upgrade to v3.1 you MUST uninstall your current product first and then install it again because of new added DB codes.

So lets say I missed that and installed it over the top. To undo my mistake, I uninstalled 3.1, then uninstalled 3.0, then reinstalled 3.1.

Now the icons aren't showing in the postbit. What have I done?

rasp187
06-10-2011, 01:37 AM
Same...they're only showing in the postbit for the default vBulletin template. On all other templates it just shows the text, even though the icons are in the correct spot.

BaziCenter
06-10-2011, 04:29 AM
In the Stylevars check your imagePathes->imgdir_misc.
The gamericons folder must be there!

mikeinjersey
06-13-2011, 12:41 PM
Is this the same mod , where you just have to enter your 360 username and your Gamercard photo will appear as your avatar ? (similar to how the Gears of War forum had it)

plz reply quick, as it'll determine whether or not I install it.

I don't see any screenshots that show such, which is why i'm askin.

thx much

betts02
06-13-2011, 01:25 PM
Just updated my forums to 4.1.3 and re-installed this mod and works great

BaziCenter
06-13-2011, 02:20 PM
Is this the same mod , where you just have to enter your 360 username and your Gamercard photo will appear as your avatar ? (similar to how the Gears of War forum had it)

plz reply quick, as it'll determine whether or not I install it.

I don't see any screenshots that show such, which is why i'm askin.

thx much
No, this mod doesn't affect user Avatars. It only shows the gamercard in the pop-up page.

mikeinjersey
06-13-2011, 06:10 PM
No, this mod doesn't affect user Avatars. It only shows the gamercard in the pop-up page.

maybe for future update ? everything else about this mod seems perfect. :)

rasp187
06-13-2011, 06:28 PM
In the Stylevars check your imagePathes->imgdir_misc.
The gamericons folder must be there!

I fixed this on a few templates by adding them directly to the misc folder, but I still can't see them on about 3 templates no matter where I put the icons (misc or misc/gamericons). Any ideas?

imgdir_misc is correct, too. All icons are in there.

BaziCenter
06-14-2011, 07:33 AM
maybe for future update ? everything else about this mod seems perfect. :)
I don't think so. The main idea behind this Mod is to show gamercards of the user from different platforms and it's not an X360 specific Mod.
I fixed this on a few templates by adding them directly to the misc folder, but I still can't see them on about 3 templates no matter where I put the icons (misc or misc/gamericons). Any ideas?

imgdir_misc is correct, too. All icons are in there.
Have you modified any of gamercards templates?

Send me a link of your forum to check it.

gobble
06-14-2011, 12:35 PM
If you select "User Select" for the PSN ID. How do you get them to actually select?

Edit... Ignore me, I hadn't gone back to the profile settings since :p

MonkYZ
06-17-2011, 09:08 AM
How come in your PSN cards users have black cards while on my forum they are all white (and ugly)? Is there a change needed to be done?

BaziCenter
06-17-2011, 09:44 AM
How come in your PSN cards users have black cards while on my forum they are all white (and ugly)? Is there a change needed to be done?
Pictures of the mod are old! US PSN portable Id was black at first but Sony changed it to white. There's nothing we can do about it.

rasp187
06-17-2011, 02:58 PM
I don't think so. The main idea behind this Mod is to show gamercards of the user from different platforms and it's not an X360 specific Mod.

Have you modified any of gamercards templates?

Send me a link of your forum to check it.

www.thecatacombs.net

I have not modified any of the gamercard templates or touched them. The only ones they do not display on are cats_hybrid_red, cats_black, cats_blue and cats_green, even though the images are in that directory and the imgdir is correct.

BaziCenter
06-17-2011, 04:04 PM
www.thecatacombs.net (http://www.thecatacombs.net)

I have not modified any of the gamercard templates or touched them. The only ones they do not display on are cats_hybrid_red, cats_black, cats_blue and cats_green, even though the images are in that directory and the imgdir is correct.
Checked you site and the icons directory was OK. But when I try to directly open the image by going to its link I get an error:
http://forums.thecatacombs.net/images/styles/blackfolio/misc/gamericons/xboxlive.pngSo you might have one of these issues:
1) Images haven't uploaded correctly so try upload them again!
2) The gamericons folder in the above address has permission issue. check your folder permission.

rasp187
06-17-2011, 05:55 PM
Checked you site and the icons directory was OK. But when I try to directly open the image by going to it's link I get an error:
So you might have one of these issues:
1) Images haven't uploaded correctly so try upload them again!
2) The gamericons folder in the above address has permission issue. check your folder permission.

I have uploaded them again numerous times to no avail.

Even chmod to 777 doesn't display the icons. Not real sure what else I can try at this point.

rasp187
06-17-2011, 07:43 PM
Hmm, been trying everything...and can't get them to display! Makes no sense since everything is identical to the other templates!

BaziCenter
06-17-2011, 07:54 PM
Hmm, been trying everything...and can't get them to display! Makes no sense since everything is identical to the other templates!
I don't know what's the main reason of your issue, but I'm sure it's not related to the mod.
An alternative way to solve this issue is to make links static. Go to the "postbit_gamercards" template and do this:
Find: (6 times)
{vb:stylevar imgdir_misc}Replace with:
images/misc

rasp187
06-18-2011, 02:09 PM
I don't know what's the main reason of your issue, but I'm sure it's not related to the mod.
An alternative way to solve this issue is to make links static. Go to the "postbit_gamercards" template and do this:
Find: (6 times)
{vb:stylevar imgdir_misc}Replace with:
images/misc

This solved the problem! Thanks a ton. No idea what the deal is with using the original code on those templates is.

hype901
06-25-2011, 05:47 PM
Love this mod. Have had it installed for awhile. About to upgrade to the latest version.

Spectre_Aidan
07-12-2011, 05:22 PM
i get this error everytime i try and enter a value in any of the fields
http://gyazo.com/fd8f49677cb23d06bf084e28d6f9c16a.png

bg_enigma1
07-15-2011, 02:33 PM
Am I doing something wrong? your screenshots show the gamercard in the postbit but all i get is the little xbox icon. I can see the gamercard if I click on it and it will popup. Can this be integrated onto the left side in the postbit?

grey_goose
07-15-2011, 06:01 PM
Very nicely done, I love the display option of the new sidebar creation.

BaziCenter
07-16-2011, 07:26 AM
i get this error everytime i try and enter a value in any of the fields
http://gyazo.com/fd8f49677cb23d06bf084e28d6f9c16a.png
Remove your Regex option in your fields options.
Am I doing something wrong? your screenshots show the gamercard in the postbit but all i get is the little xbox icon. I can see the gamercard if I click on it and it will popup. Can this be integrated onto the left side in the postbit?
Nope! Gamercards are only show in the popup page.

bg_enigma1
07-16-2011, 02:27 PM
ok. well it is awesome as it is, but is there not a way to add Just the gamercard to the postbit? Can we not use <Iframe> in the postbit?

GameOverViper
07-16-2011, 03:42 PM
Am I doing something wrong? your screenshots show the gamercard in the postbit but all i get is the little xbox icon. I can see the gamercard if I click on it and it will popup. Can this be integrated onto the left side in the postbit?

If you view this guide (http://www.purevb.com/tutorials-23/how-add-xbox-live-gamercard-your-postbit-397/), it will show you how you can add the actual Xbox Live Gamercard to the postbit. If you already have this mod installed, just use the Gamercard Profile Field # for the template edit and it will show everyone's Gamercard.

As you can see on www.Xbox360Clans.net (http://www.Xbox360Clans.net) I have the Xbox Live Gamercards showing in the postbit and with the help of this mod I have the gamercards in users profiles as well.

bg_enigma1
07-16-2011, 08:25 PM
Awesome! That did the trick!

mb2tour
07-18-2011, 11:47 AM
4.1.4 feedback anyone?

Thanks,
~~QS

BaziCenter
07-20-2011, 01:44 PM
4.1.4 feedback anyone?

Thanks,
~~QS
Works without any problem.;)

LisaArnold
07-23-2011, 10:56 AM
Can't get it to work using 4.1.4 pl2 - tried all suggestions in this thread., but will try again another time. Thanks anyway. :)

kinhell
07-27-2011, 07:02 PM
Any plans to add EA's new service Origin to this?

Spectre_Aidan
07-28-2011, 07:09 AM
love this mod and is always one of the first to be installed when i setup my boards thanks

8thos
07-31-2011, 08:49 PM
How can we change it so that it is with the imlinks (yahoo, msn, aim)?

waylandprod
08-02-2011, 07:18 PM
Any thoughts of adding Game Center? Not a big deal, but some people asked about it. Love what you do! Thanks!

HittingSmoke
08-03-2011, 12:40 AM
Is there a way to hide the profile fields from the About Me section on the profile so it just displays the GamerIDs in the the sidebar?

Thanks. Love this mod.

UrGonnaDie
08-18-2011, 12:52 AM
Is there any way for the PSN id to just be able to put your id and it show the image like xbox?

tdkmatt
08-18-2011, 05:15 AM
it comes up twice for me in the postbit, it has game ids twice?

insidegames
08-21-2011, 08:39 AM
In my forum doesn't psn gamercard shows up?

jaffaman
08-22-2011, 02:00 PM
Any plans to add EA's new service Origin to this?
+1 for Origin as we are a gaming squad and with BF3 coming out soon i can see a need for it :)

armthehomeless1
08-24-2011, 09:04 AM
it comes up twice for me in the postbit, it has game ids twice?

Yeah mine is showing up twice as well. Just updated to latest VB and latest version of this mod...

Arseynimz
08-24-2011, 11:07 AM
+1 for Origin as we are a gaming squad and with BF3 coming out soon i can see a need for it :)

Yes please - would like to know if this is possible also.

dmandem
08-26-2011, 08:54 PM
Great mod :)

Installed on 4.1.5 no problem.

Thank you.

matt.b
08-29-2011, 08:52 PM
Can you give a regex for steam id such as this STEAM_0:1:12345678 please

deespys
08-30-2011, 02:37 PM
+1 for Origin as we are a gaming squad and with BF3 coming out soon i can see a need for it :)


+1 for this.

LuDawgs
08-31-2011, 11:42 PM
Love it. Marked as installed. Works perfectly.

PBRiot
09-02-2011, 02:51 PM
When I attempt to import the XML product, I get this error:

"XML Error: Invalid document end at Line 146"

How do I diagnose this?

IndependentMP3
09-04-2011, 04:03 AM
Help please installing this on 4.0.6

1) I cant upload folders just files how do I upload a file? I uploaded the main in ftp but not working? I cant see the menu gamertag in options?

What do I put in here?

EITHER upload the XML file from your computer
OR import the XML file from your server

should I delete the files I uploaded via ftp and start again only uploading from VB I just get error line on 139

Thanks :-)

or does I do not support these versions mean "it's not going to work"

PBRiot
09-07-2011, 02:38 PM
When I attempt to import the XML product, I get this error:

"XML Error: Invalid document end at Line 146"

How do I diagnose this?

Any ideas from anyone?

LuDawgs
09-07-2011, 11:42 PM
I've noticed that the PSN ability to log in and generate portable ID's has been down for over 1 week at least. As a result, this is causing issues with my users who want to have their gamercard appear properly.

SPEEDKILLZ
09-12-2011, 07:05 PM
one question? in the postbit it just says i.e psn id instead of showing the little psn image?? how do i fix this to make the little image appear in the postbit? thanks

TeknoSounds
09-13-2011, 04:59 AM
one question? in the postbit it just says i.e psn id instead of showing the little psn image?? how do i fix this to make the little image appear in the postbit? thanks

sounds like you don't have the image in the proper path its looking for. You may need to copy these into your theme's folder.

PBRiot
09-14-2011, 03:19 AM
When I attempt to import the XML product, I get this error:

"XML Error: Invalid document end at Line 146"

How do I diagnose this?

SPEEDKILLZ
09-14-2011, 08:49 PM
mine just says: psn id? it dont show the pic in the postbit?

where and how do i find out what path it's looking for? thanks

TeknoSounds
09-15-2011, 02:30 AM
mine just says: psn id? it dont show the pic in the postbit?

where and how do i find out what path it's looking for? thanks

Firebug addon for Firefox.

Also try opening in IE.

SPEEDKILLZ
09-15-2011, 07:17 PM
Firebug addon for Firefox.

Also try opening in IE.

nope. ie7 just shows an x. where do i check to see what path it's looking for?

TeknoSounds
09-16-2011, 02:54 AM
Like I said, be sure to get Firebug for Firefox, its amazing at trying to locate problems & errors with your website

As for IE, first, should upgrade to the latest, no reason to be stuck on v7. Second, right click the X (that indicates a broken image) and do a properties on it, and should then show you the path its trying to open. Copy the images folder for this mod to that folder.

yjeanrenaud
09-22-2011, 03:10 PM
great plugin. is it possible to change the xbox live gamercard design?

FBJoost
09-29-2011, 06:18 AM
+1 for adding Origin support

Erica1977
09-29-2011, 07:18 PM
Very Nice Mod do have a question is there any way to make the name on the picture i posted it to have the outlining on the text name and for the icon simple to be in it like what you see with the arrows point too Thanks!
133304

ozzy47
09-30-2011, 12:42 AM
Very Nice Mod do have a question is there any way to make the name on the picture i posted it to have the outlining on the text name and for the icon simple to be in it like what you see with the arrows point too Thanks!
133304

I implemented it on your site to show how ya wanted.

Erica1977
09-30-2011, 01:05 AM
I implemented it on your site to show how ya wanted.
Yes and thank you ozzy i appreciate it looks awesome!:up::)

owning_y0u
10-03-2011, 05:21 PM
+1 for Origin as we are a gaming squad and with BF3 coming out soon i can see a need for it :)

/signed +1

BaziCenter
10-04-2011, 06:18 PM
Origin needs completely different mod because EA doesn't have any official gamercard generator for its games. Hence for showing stats you have to get the information from EA and generate the card layout yourself.

owning_y0u
10-07-2011, 11:12 AM
i just made a origin logo and have added the following lines to your postbit gamecard template

Add above:

</div></div>
<vb:if condition="$post['fieldX']">
<img src="images/icons/gameid/origin.png" alt="{vb:raw post.username}'s Originid: {vb:raw post.fieldX}"></vb:if>
Where the X is replaced by the extra profile fields id

deespys
10-08-2011, 12:27 AM
Works great for origin

Just make sure the path to the origin image is correct. I had to change it for my site to the proper location

vanquish.securi
10-08-2011, 02:34 AM
Works great on 4.1.7. Marked.

dustoff99
10-08-2011, 11:38 AM
i just made a origin logo and have added the following lines to your postbit gamecard template

Add above:

</div></div>
<vb:if condition="$post['fieldX']">
<img src="images/icons/gameid/origin.png" alt="{vb:raw post.username}'s Originid: {vb:raw post.fieldX}"></vb:if>
Where the X is replaced by the extra profile fields id
For us fairly new to vB, where exactly do I add this code?

CharlieDelta
10-08-2011, 06:04 PM
For us fairly new to vB, where exactly do I add this code?

You can find the templates in your ACP under "Styles and Templates" => Style Manager => Edit templates (for your desired styles) => Postbit Templates.
You will find all the gamercard templates there.:)

owning_y0u
10-12-2011, 07:05 PM
For us fairly new to vB, where exactly do I add this code?

as charlie delta said ;-).
it only lacks the gamecard popup like Steam and such. but still helpfull i hope.

mikeinjersey
10-23-2011, 04:48 PM
Is there a reason why the Gamercards would all of a sudden stop working ? This worked fine on our forums for months..and now this error when trying to display GamerCard -

"This content cannot be displayed in a frame"

(when viewing on member profile)

Maybe I enabled something recently that would interfere ?

EDIT : I just realized it only shows like that on Internet Explorer.... shows up fine on FireFox. Why would it do that ?

NguReaper
10-24-2011, 01:23 AM
Works great! Thanks

jaffaman
11-17-2011, 04:05 PM
i just made a origin logo and have added the following lines to your postbit gamecard template

Add above:

</div></div>
<vb:if condition="$post['fieldX']">
<img src="images/icons/gameid/origin.png" alt="{vb:raw post.username}'s Originid: {vb:raw post.fieldX}"></vb:if>
Where the X is replaced by the extra profile fields id
Thanks :)

UrGonnaDie
11-18-2011, 03:08 AM
Im still having trouble getting psn id's to show up on my site it only has a link to there name no image

AxleWolfe
11-18-2011, 03:24 AM
Hello, I can't seem to get the steam one to show up, all I see is my name as a link to steamcommunity.com. Xbox works, so why isn't steam showing up?

CharlieDelta
11-19-2011, 04:03 PM
Im still having trouble getting psn id's to show up on my site it only has a link to there name no image
Make sure to fully read the first post - https://vborg.vbsupport.ru/showthread.php?t=232033
Notes:
1) For showing the PSN GamerCard, users must do the following:
US: Login to us.playstation.com -> My Profile -> Portable ID -> Generate Portable ID.
EU: Login to eu.playstation.com -> My Account -> My Portable ID -> Generate Portable ID.

Empire Gaming
11-27-2011, 04:38 AM
"New sidebar on right" is not working for me. Mod works great with the exception of this small error. Whenever I change the setting to show it on the right side in profile, the entire thing disappears. Change it back to any other location and it shows up again.

Really would like to add it to the right sidebar.

SnaKe |WiH|
11-28-2011, 05:26 AM
i just made a origin logo and have added the following lines to your postbit gamecard template

Add above:

</div></div>
<vb:if condition="$post['fieldX']">
<img src="images/icons/gameid/origin.png" alt="{vb:raw post.username}'s Originid: {vb:raw post.fieldX}"></vb:if>
Where the X is replaced by the extra profile fields idDoes this Origin ID code work on ver 3.8?

sumonpathak
12-06-2011, 05:23 PM
hi...facing a small problem in my test board....everything is alright but the steam tag shows up a error like the one seen in post bit...please help...
NOTE: am running this on a test board...hosted off my system...
thanks!!!

sumonpathak
12-07-2011, 09:14 AM
NVM...seems like a problem with steam profiles.....any chance to bypass steamprofile.com?

Falcoita
12-09-2011, 02:05 PM
i think there is a problem with the last upgrade of xbox live dashoard, could someone confirm ?

thanks

Neo_Angelo
12-12-2011, 08:35 PM
This mod would be even better if the pop-ups where ajax and didn't open a new window instead gave a pop-up just above the icon with the info in it.

however this mod is awesome and a must have for gaming communities. Excellent work.

Scans007
12-19-2011, 06:10 PM
Yup, just added it to my site. All PS3 gamers........great stuff.

Anything to up the value of the profile page!! Awesome.....no issues with 4.1.9 =)

IFx DDay
12-26-2011, 08:20 PM
I installed the XML and uploaded the folder and file to my server but the settings box is not coming up, nor is anything in the postbit/profile/etc. Where can I activate it? I followed the directions to a T and have repeated the process 3 times (vB 4.1.6).

ultimategeek
03-02-2012, 06:44 AM
A great Mod thank you

Stryker412
03-11-2012, 06:28 PM
I'm having an issue with the icons stacking up on each other. This is on 4.1.11 using the latest version of Gamericons.

https://vborg.vbsupport.ru/ (http://imageshack.us/photo/my-images/201/iconstk.png/)

SnaKe |WiH|
03-17-2012, 06:11 PM
Mods working great, thank you! Any plans to add in Origin?

CoZmicShReddeR
03-18-2012, 12:17 PM
I'm having an issue with the icons stacking up on each other. This is on 4.1.11 using the latest version of Gamericons.

http://img201.imageshack.us/img201/9460/iconstk.png (http://imageshack.us/photo/my-images/201/iconstk.png/)

Had the same issue was a custom theme I purchased asked the theme maker for help they basically said it wasn't their problem so I uninstalled theme and will never purchase a theme from them ever again!

The theme used the alot of the overall css so a lot of stuff that edits or used the css was out of whack unless the theme maker added it to their css...

Try removing or disabling the theme use the default if that doesn't work if the theme required a plugin disable the theme plugin too see if it fixes it!

officer cartman
04-09-2012, 04:32 PM
is there anyway of removing where is says Gamer IDs?
it doesnt fit in with theme and with the icons you dont really need any explanation

Gamelobby
04-11-2012, 04:57 AM
I seem to be having an issue where it sends members to microsoft to sign in.?
login.live.com
I had only heard about it from members who were using Firefox, but now i actually saw it happen to me using Chrome.

abouthere
05-14-2012, 10:22 AM
I wondering if it's possible to add the Blizzard Gamertags to this system. i.e. the Battle.net IDs please?

VAG
05-17-2012, 09:46 PM
I have installed this mod and I am only using the Xbox Live icon. How can I put the icon next to words Gamer ID: instead of below the words ?

Thanks !

yjeanrenaud
05-20-2012, 12:06 PM
edit postbit_gamercards_xboxlive

VAG
05-20-2012, 07:17 PM
I tried that but didn't work out. What do I have to edit to make this adjustment ?

yjeanrenaud
05-20-2012, 07:42 PM
<h2><img src="{vb:stylevar imgdir_misc}/gamericons/xboxlive.png" width="16" height="16" alt="" /> {vb:rawphrase bc_gamercards_postbit_gamertag}: <a href="http://live.xbox.com/member/{vb:raw userinfo.gamertag}" target="_blank">{vb:raw userinfo.gamertag}</a></h2>
to
<h2><img src="{vb:stylevar imgdir_misc}/gamericons/xboxlive.png" width="16" height="16" alt="" />&nbsp;{vb:rawphrase bc_gamercards_postbit_gamertag}:&nbsp;<a href="http://live.xbox.com/member/{vb:raw userinfo.gamertag}" target="_blank">{vb:raw userinfo.gamertag}</a></h2>

kamran_dotnet
05-25-2012, 07:50 AM
anyone test "GamerCards Block" in vbulletin 4.2 ?

dustoff99
05-27-2012, 01:54 PM
Works on mine, just upgraded this morning.

thecoo1est
05-27-2012, 02:32 PM
working great on my 4.2 also

charlesr
05-28-2012, 05:46 PM
Installed. Nice. Thanks.

charlesr
05-28-2012, 06:34 PM
Pressing the "send message to user on xbox live" button doesn't work for me.
It is sending to:
http://live.xbox.com/en-US/MessageCenter/Compose?gamertag=charlesr
but the format when browsing on xbox.com appears to be:
http://live.xbox.com/en-US/Messages?gamertag=charlesr

This can be swapped manually in template: postbit_gamercards_xboxlive (until a new version is released)

charlesr
05-30-2012, 04:10 PM
Also in the PSN popup window, clicking on the portable id card takes you nowhere useful
e.g.
http://eu.playstation.com/psn/profile/EvilBoris << this just goes to a standard registration page now.
Is there a better alternative?
Clicking the PSN gamer id name at the top in the blockhead is ok though - takes you to their trophy list.

Anyway, my users love this mod - sent you a donation via paypal :)

BaziCenter
05-31-2012, 11:53 AM
Also in the PSN popup window, clicking on the portable id card takes you nowhere useful
e.g.
http://eu.playstation.com/psn/profile/EvilBoris << this just goes to a standard registration page now.
Is there a better alternative?
Clicking the PSN gamer id name at the top in the blockhead is ok though - takes you to their trophy list.

Anyway, my users love this mod - sent you a donation via paypal :)
This registration link is attached to the portable id card when you generate it from eu.playstation.com website. I don't know why Sony doesn't update the link.
The link that goes to the trophy list is for us.playstation.com. If you want all your links take you to the user trophy list you have to edit them manually and replace the US link.

By the way thanks for the donation.:)

jhon13
06-26-2012, 07:33 AM
https://vborg.vbsupport.ru/external/2012/07/51.png
how can i fix it plz tell me

jhon13
06-26-2012, 03:05 PM
helpppppppppppppppppppppppppp plzzzzzzzzzzzzzzzzzzzzzzzzzz

BaziCenter
07-01-2012, 06:09 AM
https://vborg.vbsupport.ru/external/2012/07/51.png
how can i fix it plz tell me
To fix what?

GamerPerfection
07-01-2012, 07:48 AM
To fix what?
I think he means the gamer IDs are all squashed up.

charlesr
07-01-2012, 12:27 PM
The arrow in the pic could be fixed by turning it around and pointing it at the icons :D

Seems to be a template overlap to the skype stuff.

Does it fix if you try turning off the messenger icons in the control panel?
And presuming you have a vbulletin default style to test on (if not make one by creating a new style with no parent) does it work in that at the moment?

jhon13
07-01-2012, 06:16 PM
it works fine in default theme but in that theme button get up on other button

charlesr
07-02-2012, 05:46 AM
If it works in the default, I think you need to talk to whoever made your custom theme.

SPEEDKILLZ
08-24-2012, 12:29 PM
where in the gamercard postbit do i put the id number so i can see the image in my postbit?

fly
08-24-2012, 12:53 PM
where in the gamercard postbit do i put the id number so i can see the image in my postbit?

Have you done steps 4 and 5 in the README, or is that what you're asking about?

CoryHawk
08-28-2012, 05:03 PM
i am getting a double showing of this in the legacy postbit.

It displays them twice if it is active to show in postbit.

XGC Paravain
10-14-2012, 07:54 PM
I dont understand why this is not working for me im following every thing to a TTTTTTTT I been working on it all day and I still cant see my Gamercard im out of idea's

CoZmicShReddeR
10-15-2012, 08:10 AM
I dont understand why this is not working for me im following every thing to a TTTTTTTT I been working on it all day and I still cant see my Gamercard im out of idea's

Why post anything without what your having issues with?? People here help people here if they know what your issues are...

Leifer
10-16-2012, 05:17 AM
Hi, sry for my english !

I have a problem with the gamercard block in the profil, xbox OK, but not PSN and SteamID :s help me please !

charlesr
10-16-2012, 09:22 AM
Doesn't solve your problem but just to confirm PSN and SteamID are working fine on my site. Have you definitely entered the IDs correctly?

Leifer
10-16-2012, 04:25 PM
Yes the IDs are correct and link works but not pictures :s I use vBulletin 4.2.0

Edit : SteamID works ! why ? i don't know :s but PSN don't works :(

yjeanrenaud
11-29-2012, 04:51 AM
is the path to the image correct?

ozione
12-03-2012, 07:39 AM
hi there!
any infos on integration of the (new) nintendo network? now, that wiiu is launched?

thanks

Anbieter
12-05-2012, 12:35 PM
Could you maybe add a function to add the steamcard to the postbit?

like:

<vb:if condition="$gamerid['steamid']">
<a href="javascript://" onclick="openWindow('gamercard.php?do=steam&amp;u={vb:raw post.userid}',525,340); return false;"><img src="http://steamcard.com/do/original/{vb:raw gamerid.steamid}.png" alt="{vb:rawphrase bc_gamercards_postbit_steamid}: {vb:raw gamerid.steamid}" /></a>
</vb:if>


Would be nice :)

charlesr
12-13-2012, 03:58 PM
The Xbox live links have changed.

Now PMing the mod author.

yjeanrenaud
12-14-2012, 06:14 AM
great thanks. if you leave the language code away from the url so
https://live.xbox.com/Messages?gamertag={vb:raw userinfo.gamertag}
instead of
https://live.xbox.com/en-US/Messages?gamertag={vb:raw userinfo.gamertag}
the user gets their localised version displayed.

charlesr
12-14-2012, 10:28 AM
Ah smashing. Tested that change fine.

Crotan
12-20-2012, 05:38 PM
I'm confused. Xbox gamecards are still showing on my website, with the 3.1 version. They don't appear to be broken at all. What has changed?

charlesr
12-21-2012, 07:26 AM
After you view their card popup, try clicking on their name and other links. Some of the links won't work. Same on their forum profile page.

CoZmicShReddeR
12-21-2012, 10:50 PM
Hey thanks for the update! I just would like to see something better then Steam Card for Steam!

I was wondering if there was a way to use http://steamidfinder.com instead because theirs supports three different ways of adding the users steam... Plus their setup seems less buggy...

I still would like to see someone make something website based for Steam sigs...

Is there a way to add it into the Steam Connect made by Disasterpiece
https://vborg.vbsupport.ru/showthread.php?t=266883&highlight=steam

Scyther
12-27-2012, 06:08 AM
Excellent Mod.
Thanks,

Gamelobby
12-28-2012, 07:58 PM
I'm having trouble..
I recently upgraded to 4.2 & now it isn't working. (i thought it was working since the upgrade, but cant think of any other reason it would stop)

https://vborg.vbsupport.ru/attachment.php?attachmentid=143052&d=1356728284


*edit*
Actually it is working on some profiles, postbit's & not others so it seems it has nothing to do with this mod. :)
It's not working on the same acct's in the gXboxlive leaderboard also. :(


great thanks. if you leave the language code away from the url so
https://live.xbox.com/Messages?gamertag={vb:raw userinfo.gamertag}
instead of
https://live.xbox.com/en-US/Messages?gamertag={vb:raw userinfo.gamertag}
the user gets their localised version displayed.
Where did you make this change.?


.

dmercer09srt4
01-04-2013, 04:25 PM
I am having an issue with this. The image seems to be broken for the steam gamer card. Any ideas?

ClanScene
01-06-2013, 05:28 PM
Same problem here with 4.2.0, the profile sections works perfectly although Steam looks kinda werid:

https://vborg.vbsupport.ru/external/2013/01/37.jpg

The postbit:

Firefox
https://vborg.vbsupport.ru/external/2013/01/38.jpg

Safari
https://vborg.vbsupport.ru/external/2013/01/39.jpg

GameOverViper
01-06-2013, 08:48 PM
Same problem here with 4.2.0, the profile sections works perfectly although Steam looks kinda werid:

https://vborg.vbsupport.ru/external/2013/01/37.jpg

The postbit:

Firefox
https://vborg.vbsupport.ru/external/2013/01/38.jpg

Safari
https://vborg.vbsupport.ru/external/2013/01/39.jpg

I am having the same problem with the Steam box on Revolution of Gaming (http://www.revolutionofgaming.com/forum/forum.php), however everything else works fine on Google Chrome and Firefox. Not sure why your having that issue on Firefox for your site. Just wanted to let you know it works on mine though. I'm running 4.2.0.

OliverG
01-10-2013, 09:29 PM
Any chance of support for Evolve, sometime in the future? It's a much better platform than Raptr or Xfire.

waylandprod
02-07-2013, 10:48 PM
I'm looking to find methods to relocate the code in the postbit, but having trouble finding the right string since it's using a plugin to put the code in. Any ideas?

EDIT: Figured it out. Go to the Postbit Plugin and look for:
$template_hook[postbit_userinfo_right] .= $templater->render();

and make it:

$template_hook[postbit_userinfo_game] .= $templater->render();

Then in the postbit_legacy you can paste:
{vb:raw template_hook.postbit_userinfo_game}

And put it wherever you want.

MonkYZ
02-15-2013, 12:22 PM
Hmm, the Xbox Live gamercard not working anymore. Any fix for this?

marccap
02-15-2013, 01:53 PM
Works on 4.2 - You will need to amend the website coding to fix the link to xbox sit

Also Members were having problems with the field input so remove the regular expressions as not needed really

deadlySniper
02-17-2013, 09:27 PM
There just needs to be a solution to the steam ID not working.

ProjectCamaro
04-20-2013, 11:04 PM
Just installed this and it works great, thank you for this mod!

dukegotgame
05-01-2013, 12:22 AM
n/m

TwoMINIFamily
06-22-2013, 07:57 PM
I just installed this and as I am only using the Xbox and PSN options of this I've been able to only get it to work halfway in the Profile portion. The Xbox gamercard works fine but the PSN doesn't show any gamercard. It says what the PSN ID is and if you click in the box of where the PSN card should show it will take you to the gamercard on the PSN site correctly. just can't the gamercard to display.

OUTL4W
08-07-2013, 01:58 PM
I just installed this and as I am only using the Xbox and PSN options of this I've been able to only get it to work halfway in the Profile portion. The Xbox gamercard works fine but the PSN doesn't show any gamercard. It says what the PSN ID is and if you click in the box of where the PSN card should show it will take you to the gamercard on the PSN site correctly. just can't the gamercard to display.

same thing happened to me...but after logging into PSN...it now shows up. once members sign into their psn accounts on pc....it should retain the img.

wwwjen
08-16-2013, 01:11 AM
Thanks

LgsOfChampions
08-27-2013, 04:12 PM
weird! works in my profile, but does not work in my postbit? any suggestions?

CAG CheechDogg
08-27-2013, 05:01 PM
weird! works in my profile, but does not work in my postbit? any suggestions?

Was it working for you before? And what browser are you using...I had this issue and fixed it.

OUTL4W
09-04-2013, 03:20 PM
has anyone experienced any thing weird with this lately?...I think MS moved the location of the gamertag page....

charlesr
09-05-2013, 06:21 AM
All seems to be working fine for me.

OUTL4W
09-05-2013, 09:59 AM
All seems to be working fine for me.

so when you click the xbox icon in post bit does it show the actual gamercard in the pop-up or just the avatar and a blank space where the gamercard use to be?

charlesr
09-06-2013, 07:51 AM
Yeah. Try on my site. Also appears in the user's profile page.

XGC Paravain
09-06-2013, 10:37 PM
Gamer Icons are not showing up in postbit all im getting is thumbnail

XGC Paravain
09-06-2013, 10:52 PM
I figured out the gamericons

I just noticed if you have a custom style you need to upload the gamericon folder to your custom styles/misc folder

works great now :up:

charlesr
09-07-2013, 06:27 AM
so when you click the xbox icon in post bit does it show the actual gamercard in the pop-up or just the avatar and a blank space where the gamercard use to be?

I tried on your site and it appears to be working. Took a few seconds for the gamercard to appear.

Ludacryst
10-01-2013, 01:31 AM
We installed this on our forums. I find it to be a great add on. You should add Wii U to the list =)

charlesr
10-01-2013, 06:47 AM
Yeah, ditto. Wii U would be great.

srpompon
10-14-2013, 04:51 AM
Great! Waiting 4 Origin support.

SPEEDKILLZ
10-14-2013, 08:20 PM
How Do You Get This To show Up In Side Bar/Blocks?

CoZmicShReddeR
10-14-2013, 08:37 PM
How Do You Get This To show Up In Side Bar/Blocks?

If you read the instructions you have to create a user profile field for each gamer information.

Once you create as it says in the instructions then you add your information and it should show in your user profile...

Like on my website you can see all the gamer information:
http://www.cozworld.com/member.php?u=1

SPEEDKILLZ
10-14-2013, 09:08 PM
I sorry should of been more specific. I what it to show in the sidebar on forum home

CoZmicShReddeR
10-14-2013, 10:55 PM
I sorry should of been more specific. I what it to show in the sidebar on forum home

If you mean like a list of users it's not meant for that...

Dam13n
10-18-2013, 06:41 AM
How can I add the Origin platform?

CoZmicShReddeR
10-18-2013, 07:22 PM
How can I add the Origin platform?

I did it by just adding another profile field and modifying the "Template: postbit_gamercards" I just added an extra field at the end...

<vb:if condition="$post['fieldX']">
<img src="images/icons/gameid/origin.png" alt="{vb:raw post.username}'s Originid: {vb:raw post.fieldX}"></vb:if>
<vb:if condition="$post['fieldX']">

I just added it under the WII code where it ended after the </vb:if>

There is no banner code from Origin so all you will have is just an icon and hover name in the forums posts...

FTG LIQUID CL
12-07-2013, 02:22 PM
I cant seem to get the gamercard to show up in the forum area next to post ,the psn gamercard. Trying to get it to show in postbit_legacy

OUTL4W
12-07-2013, 04:42 PM
I cant seem to get the gamercard to show up in the forum area next to post ,the psn gamercard. Trying to get it to show in postbit_legacy

when you click on the xbl or psn icon located below avatar which should open a popup window showing the gamercard/PSN id

fyi - for the psn id to show up....you have to be logged in to psn 1st....that's sony's doing for security reasons.

OUTL4W
12-22-2013, 04:44 PM
Anyone having issues with the steam ID giving the "Invalid User ID" error when clicking the icon?

nvrmnd: figured it out

FoxkaZ
12-27-2013, 07:18 PM
Works great. Origin and Uplay support would be great too. :D

CoZmicShReddeR
12-27-2013, 08:39 PM
Works great. Origin and Uplay support would be great too. :D

I already posted how to add origin support you will have to do it yourself this is mod is no longer being supported by the author or at least it seems that way!

I did it by just adding another profile field and modifying the "Template: postbit_gamercards" I just added an extra field at the end...

<vb:if condition="$post['fieldX']">
<img src="images/icons/gameid/origin.png" alt="{vb:raw post.username}'s Originid: {vb:raw post.fieldX}"></vb:if>
<vb:if condition="$post['fieldX']">

I just added it under the WII code where it ended after the </vb:if>

There is no banner code from Origin so all you will have is just an icon and hover name in the forums posts...

I.G.O.T.A.
01-14-2014, 01:47 AM
Anyone write this for xboxone yet?

yjeanrenaud
01-14-2014, 08:45 AM
Isn't it the same live.xbox.com as for 360?

I.G.O.T.A.
01-15-2014, 12:48 AM
Isn't it the same live.xbox.com as for 360?

It should be, but doesn't show the games I have played now.

KDawg08
01-18-2014, 01:23 AM
For some reason, the images don't show up in my postbit on the left side under my usernames in the thread post and replies, but it showed up in my profiles perfectly.

It just shows a rectangle with a dead image icon, Any idea why that would be? I haven't modified any of the coding and followed the instructions to a Tee. I had this installed in my old website but this time it didn't like me lol.

CoZmicShReddeR
01-18-2014, 02:36 AM
You have to install the gamericons folder in your style misc folder..

KDawg08
01-18-2014, 05:12 AM
You have to install the gamericons folder in your style misc folder..

I just double checked, all those files are already uploaded in the misc area.

CoZmicShReddeR
01-18-2014, 02:10 PM
They need to be uploaded to your custom theme not the default theme!

KDawg08
01-18-2014, 04:50 PM
They need to be uploaded to your custom theme not the default theme!

Ah, Thank you, I'm a dumbass haha.

CoZmicShReddeR
01-18-2014, 09:10 PM
Ah, Thank you, I'm a dumbass haha.

It's ok I did the same thing about 3 years ago! :p

OUTL4W
01-19-2014, 03:14 AM
It should be, but doesn't show the games I have played now.

Xbox.com has actually yet to be updated to reflect any Xbox One activity.

Natea
05-16-2014, 04:41 PM
Steamcard don't work now :/

card image don't shown

CoZmicShReddeR
05-18-2014, 01:17 AM
Steamcard don't work now :/

card image don't shown

Just so you know only works if you use all lowercase of a name you created for your steam account it does not work with steam ID or your steam id number and SteamCard is unreliable.

Bestrafung
06-06-2014, 05:57 PM
I'm trying to add the Steam card (it's the only part of this mod we use on our site) to the free agent page in our tournaments. I have a working plugin that shows the currently logged in user's steam card instead of the user whose page you're on. If anyone could give me an idea on how to do this I'd greatly appreciate it. Here's what I have at the moment:
$steamid_facard = $vbulletin->userinfo[field11];
vB_Template::PreRegister('header',array('steamid_f acard' => $steamid_facard));

Then I use something like:
<a target="_blank" href="http://steamcommunity.com/id/{vb:raw steamid_mycard}"><img width="203" border="0" alt="" src="http://steamcard.com/do/original/{vb:raw steamid_mycard}.png"></a>
in the free agent template. What I need is a way to load the profile field by userid of the page you're on. I found somewhere that you can use
$userinfo = fetch_userinfo($userid);
to find the profile field but before I can even try to dig into that I have to find a way to pass the userid value. Does anyone have any ideas?

CoZmicShReddeR
06-07-2014, 02:36 PM
I'm trying to add the Steam card (it's the only part of this mod we use on our site) to the free agent page in our tournaments. I have a working plugin that shows the currently logged in user's steam card instead of the user whose page you're on. If anyone could give me an idea on how to do this I'd greatly appreciate it. Here's what I have at the moment:
$steamid_facard = $vbulletin->userinfo[field11];
vB_Template::PreRegister('header',array('steamid_f acard' => $steamid_facard));

Then I use something like:
<a target="_blank" href="http://steamcommunity.com/id/{vb:raw steamid_mycard}"><img width="203" border="0" alt="" src="http://steamcard.com/do/original/{vb:raw steamid_mycard}.png"></a>
in the free agent template. What I need is a way to load the profile field by userid of the page you're on. I found somewhere that you can use
$userinfo = fetch_userinfo($userid);
to find the profile field but before I can even try to dig into that I have to find a way to pass the userid value. Does anyone have any ideas?

First off Steam Card is horrible... I hate how it requires all lower case and names not numbers... Ideally we would want something where user adds their Steam account to the website and the website draws a custom card much like the mini card.

I was looking at your info was just wondering if the fictional name was supposed to be the same as the output name? Like vb:raw steamid_mycard was wondering why isn't the name reflective of the steamid_facard name??

Bestrafung
06-07-2014, 09:34 PM
First off Steam Card is horrible... I hate how it requires all lower case and names not numbers... Ideally we would want something where user adds their Steam account to the website and the website draws a custom card much like the mini card.

I was looking at your info was just wondering if the fictional name was supposed to be the same as the output name? Like vb:raw steamid_mycard was wondering why isn't the name reflective of the steamid_facard name??

Yeah, I've heard a lot of bad things about Steam Card but I don't know enough about coding to put something custom together. Ideally we would just connect directly to Steam's API if possible and draw a custom card as you suggested. There is a mod that allows you to use the Steam OpenID or w/e it's called to login with your Steam account but I don't know how to work off of that.

Regarding the difference between facard and mycard it was just a copy/paste issue. When I first started a made a plugin that only loaded the currently logged in user, hence the mycard. Then I switched to facard for "free agent card". All of the code in the plugin itself is now facard.

All I need is to get the userid for the agent's page. With my limited experience the only way I know to proceed at the moment is to grab the agent number from the URL and try to use that to find the userid from the database but I'm sure there must be an easier way.

CoZmicShReddeR
06-08-2014, 01:41 AM
Well I am sure we have decent coders who look through these pages but getting their attention could take eons or maybe if they consider Steam is one of the top most widely used gaming platforms in the world they might re-consider but I doubt it... ;(

Bestrafung
07-18-2014, 08:47 PM
I'm still trying to get the gamercards to load in a location other than postbit or user profile. I'm not a VB coder and barely get by with PHP so if anyone can help I'd be immensely grateful. You would think it would be as simple as just copying the profile block to another page somehow. I had hoped the developer would be willing to help but it's not looking good at the moment.


EDIT: Just in case anyone else is after this I finally figured it out after taking a crash refresher course in working with databases in PHP and including PHP in vb templates.

Create a plugin at global_start, execution order 5, with the following code:
ob_start();
include_once('freeagent_steamcard.php');
$mycode = ob_get_contents();
ob_end_clean();
vB_Template::preRegister('tmnt_freeagent',array('m ycode' => $mycode));

Then edit the tmnt_freeagent template and add {vb:raw mycode} wherever you want it to show up.

Then create and upload freeagent_steamcard.php to the same directory as your teams.php and other tournament files (usually the forum root) with the following code:
<?php
$myfield = "field".$vbulletin->options['bc_gamercards_steamid'];
$id = $vbulletin->input->clean_gpc('g', 'id', TYPE_UINT);
$rowcount = 0;
$getuserid = $vbulletin->db->query_first("SELECT userid FROM " . TABLE_PREFIX . "tmnt_members WHERE id = '$id'");
if (!$getuserid[userid]){}
else{$getsteamid = $vbulletin->db->query_first("SELECT ".$myfield." FROM " . TABLE_PREFIX . "userfield WHERE userid = ".$getuserid[userid]);}
$steamid = $getsteamid[$myfield];
if (!$steamid){echo 'This user has not specified a Steam ID yet.';}
else{echo '<a target="_blank" href="http://steamcommunity.com/id/'.$steamid.'"><img width="203" border="0" alt="" src="http://steamcard.com/do/original/'.$steamid.'.png"></a>';}
?>

I'm not a good coder by any means but this gets the job done. If improvements can be made please let me know.

Gamelobby
09-05-2014, 03:31 AM
So is it working for Xbox one.?

charlesr
09-05-2014, 06:17 AM
Only 360 games are noticed. :(

maf1973
10-31-2014, 03:52 PM
Any updates to show the xbox one games and avatar?

charlesr
11-11-2014, 10:00 AM
The profile page gamercard now shows (a tiny bit of) the xbox homepage.

edit: ignore! seems ok now.

charlesr
11-13-2014, 08:54 AM
I'm going to fiddle around with the raptr one to make it into a TrueAchievements feed - their gamercard shows both 360 and One results now and Raptr have stated they will not be supporting current gen any time soon. :(
http://www.trueachievements.com/gamercards/charlesr.jpg

There's still no movement from MS to support XboxOne in their own gamecard.