vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Profile Enhancements - GamerCards Block in Profile Sidebar and Postbit (https://vborg.vbsupport.ru/showthread.php?t=232033)

K4GAP 09-17-2010 08:49 PM

Downloaded but waiting on feedback from post before installing.

shanef 09-17-2010 10:47 PM

Stupid question but on item 3 on install were exactly should i be placing this ? 3) Upload the "gamercard.php" to your forum's root folder. I don't have a "forums root folder" by name and i just want to make sure i have it in the right spot

TIA

Nephalim 09-18-2010 11:38 PM

HAs something happened to the Playstation.com sites? all Members joining go to EU and US and click portable I.D. but it still doesn't show. And they spell their gamer I.D.'s exact.

STORMS 09-19-2010 01:14 AM

Quote:

Originally Posted by shanef (Post 2099833)
Upload the "gamercard.php" to your forum's root folder. I don't have a "forums root folder" by name and i just want to make sure i have it in the right spot

TIA

The forum root folder isn't called the "forum root folder", go here:
httpdocs>>forum <--- This is your forum "root" folder.

STORMS 09-19-2010 01:16 AM

Quote:

Originally Posted by GaryT (Post 2099789)
Has anyone successfully installed this on 4.0.6 ? And, did you have to make any changes to make it work?

I'm running 4.0.6 and it works fine. We're currently modding it so that is appears differently in our postbit legacy, but have a look for yourself: www.mortalkombatempires.com

nanouniko 09-19-2010 10:34 AM

Delete Please

unknown22 09-19-2010 02:49 PM

Can someone help because we're mainly on steam

https://vborg.vbsupport.ru/showpost....&postcount=235

BaziCenter 09-20-2010 02:38 PM

Quote:

Originally Posted by STORMS (Post 2096856)
I'm having this same issue, here's a screen:
https://vborg.vbsupport.ru/external/2010/09/9.png

Any ideas?

Remove your regex field form PSN user profile options.
Quote:

Originally Posted by unknown22 (Post 2098537)
I like to switch that custom url to


STEAM ID this is a steam id not that custom url

STEAM_0:1:82355612

should look like this picture attached below

In the "postbit_gamercards_steam" template find:
Code:

<div class="blockrow" align="center"><a href="http://steamcommunity.com/id/{vb:raw userinfo.steamid}" target="_blank"><img src="http://steamcard.com/do/original/{vb:raw userinfo.steamid}.png" alt="" border="0" /></a></div>
Replace With:
Code:

<div class="blockrow" align="center"><a href="http://steamcommunity.com/id/{vb:raw userinfo.steamid}" target="_blank"><img src="http://steamprofile.com/profile/extended/steam/{vb:raw userinfo.steamid}.png" border="0" /></a></div>

CoZmicShReddeR 09-23-2010 01:35 AM

raptr addon doesn't seem to be showing up postbit_gamercards info??

BaziCenter 09-23-2010 05:35 AM

Quote:

Originally Posted by CoZmicShReddeR (Post 2102052)
raptr addon doesn't seem to be showing up postbit_gamercards info??

If you edited your "postbit_gamercards" template you must revert it.

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:
Code:

<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

Quote:

Originally Posted by PreciseDemise (Post 2113364)
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:
Code:

<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...

Code:

<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

Quote:

Originally Posted by Octavius. (Post 2125541)
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

Quote:

Originally Posted by Crotan (Post 2130702)
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

Quote:

Originally Posted by arrow816 (Post 2142745)
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

Quote:

Originally Posted by TeknoSounds (Post 2147924)
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.


All times are GMT. The time now is 04:05 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01910 seconds
  • Memory Usage 1,866KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code_printable
  • (10)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete