Topic-icon JFBCLogin Easy Tags/automatic integration - BUGs

Active Subscriptions:

None
Hi Alzander
here you wrote me:

2) Our automatic integration only works with the Joomla login and registration page. It doesn't work for all other components. You can use the following tag to add the login button yourself:
{jfbclogin}
You can also customize it quite a bit, like showing only certain providers or even custom images for each provider:
{jfbclogin providers=facebook,twitter,instagram}
For more details on all tag options, see our social network Easy Tag documentation .


1 - BUG - I enabled the "Integrate with Joomla Login" setting in JFBConnect and added this Custom CSS to have it running well, this is the result and this is the CCS Custom code I had to add:
span.sourcecoast.login {
justify-content: center !important;
display: flex;
}
.sourcecoast .intro {
float: none !important;
text-align: center;
padding: 10px 0 0 0;
}
.social-login.facebook.jfbcLogin.pull-left {
clear: both;
}
#sp-component .login img {
margin: 20px 15px;
}
@media (min-width: 768px){
  #sp-component .login img {
    height:48px;
  }
}
Now, using the {jfbclogin} within a Joomla Custom Module for this Seblod Registration page all the Custom CSS are not inherit and all settings are lost.
Please, What can I do ? Do I have to double the CSS code ?
How to add a Class Suffix to the "Integrate with Joomla Login" feature ?

2 - BUG: the {jfbclogin} does not include the text "COM_JFBCONNECT_LOGIN_WITH"
Tested it also with {jfbclogin text=COM_JFBCONNECT_LOGIN_WITH=true} but it does not run.

Please, How can I add it ?
Please, Can you add the Language String support ? (That should be by default for me)
The topic has been locked.
Support Specialist
6 years 1 month ago #66263 by mel
1. If you put the following span around the easy-tag, it should get the existing CSS you added to center the buttons. I added that in my inspector for your page before the row-fluid and it looked good to me.
<span class="sourcecoast login">{JFBCLogin}</span>

2. The easytag system doesn't currently check to see if a value in the text parameter is a language string. I've checked in some code for the next release to fix this. In the meantime, you can add the new code. In /components/com_jfbconnect/libraries/widget/login.php, around line 137 after
$text = $this->getParamValueEx('text', null, null, null);
add
$text = JText::_($text);

Let me know if you run into a problem with either of these changes.

-Melissa
The topic has been locked.
Active Subscriptions:

None
6 years 1 month ago #66276 by joomleb
Hi Mel,
really many thanks !

3 - I have another question:
--- SCLogin Module > Social Button Settings > Show Social Login Button(s): enabled ( let see it in the left offcanvas position ) = It adds the Social Buttons where I can Login (to connect) or Register (to create) a new account = OK the double option.
--- LOGIN page : JFBConnect > Configuration > General > Integrate into Joomla Login: enabled - Please, How can I limit the Social Buttons feature to the Login one (to connect) ? (Hiding the "jfbc_loginregister_newuser")
--- REGISTRATION page : I added the {jfbclogin} Social Tag in Custom Module and added it to my Seblod Registration page - Please, How can I limit the Social Buttons feature to the Register (to create) a new account one ? (Hiding the "jfbc_loginregister_existinguser")
The double option it is causing confusion to my customers (...I have no words for that)

4 - SCLogin Module > Social Button Settings > Alignment: Please, Can be added a "Center" option ?
The topic has been locked.