External Accounts Extended

External Accounts Extended 2018-03-02

No permission to download
Thanks for the prompt response, that worked.

Second question, the final button in the list is usually double the size of the others. Any ideas?

View attachment 112688
That's a style-specific edit. Meaning the style you are using is doing custom edits. You would have to add some code to make it compatible with that style.
What style is it?
 
You could ask him :) If I have time I could see what I can do, but try asking him it really shouldn't be too hard the way it's setup!
No issue... I started looking into it via Inspect Element... looks like the google.css calls for a 33px height, whereas every other element is 22px tall. Playing with adjustments now.
 
Fixed it, showing the changes I made below:

Code:
.googleLogin,
#loginBar .googleLogin
{
    display: inline-block;
    width: @eAuthButtonWidth;
    height: 22px; /* Changed from default '33px' */
    box-sizing: border-box;
    cursor: pointer;
    background-color: #dd4b39;
    border: #be3e2e solid 1px;
    border-radius: @xb_borderradiuss;   
    color: white;
    font-weight: normal;
    font-size: 12px;
    overflow: hidden;
    box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.06) inset;
    text-align: left; /* Changed from default 'center' */
}
.googleLogin span
{
    display: inline-block;
    line-height: 20px; /* Changed from default '31px' */
    white-space: nowrap;
    overflow: hidden;
    padding-left: 3px; /* Added property for uniform look */
}
.googleLogin:before, #loginBar .googleLogin:before
{
    display: inline-block;
    font-family: FontAwesome;
    content: "\f0d5";
    float: left;
    padding-left: 7px; /* Changed from default '15px' */
    font-size: 17px;
    line-height: 21px; /* Changed from default '32px' */
}
.googleLogin:active, #loginBar .googleLogin:active
{
    box-shadow: none;
}
 
Doh, I'm back. Issue with battle.net oauth.

Error: _actionRegister: $code not found.

ClubNub Gaming Community - Error
An error occurred while connecting with Battlenet. Please try again later.

Battle.net app (to clarify, register call url is set to: Error | ClubNub Gaming Community )

7-27-2015 11-56-43 PM.webp

Any help would be greatly appreciated :)
 
Last edited:
Doh, I'm back. Issue with battle.net oauth.

Error: _actionRegister: $code not found.

ClubNub Gaming Community - Error
An error occurred while connecting with Battlenet. Please try again later.

Battle.net app (to clarify, register call url is set to: Error | ClubNub Gaming Community )

View attachment 112695

Any help would be greatly appreciated :)
Are you using SSL? Because it requires SSL for battle.net. That's their implementation not mine and from the image it looks like you are not :(
 
Are you using SSL? Because it requires SSL for battle.net. That's their implementation not mine and from the image it looks like you are not :(
Odd, it would seem like they wouldn't allow http:// entries if they require SSL?

Either way, thanks for the prompt response :)
 
Hello i have just installed this addon, its working fine in xf 1.5.1

but one question - how do i track how many users are joining with there instagram account?

thanks
 
A question:
Are profile information synced only the first time or continue to be in sync if changes happen in social network?

Example:
User register/login by LinkedIn and profile info like their work etc are filled user profile/user fields on xenforo
If the user change that field on LinkedIn what happen on xenforo profile/user field? To be synced they have to login by LinkedIn again or it's not needed?
 
A question:
Are profile information synced only the first time or continue to be in sync if changes happen in social network?

Example:
User register/login by LinkedIn and profile info like their work etc are filled user profile/user fields on xenforo
If the user change that field on LinkedIn what happen on xenforo profile/user field? To be synced they have to login by LinkedIn again or it's not needed?
Yes they have to be logged in again.
 
Does this not work on XenForo 1.5.3?

I just bought it and feel like I wasted my money because it shows it's installed but it doesn't work on my 1.5.3 installation.

You can see how wonky it is here: http://wranglertjforum.com/

Here's my settings:

Screen Shot 2015-12-07 at 3.57.05 PM.webp
 
Top Bottom