× Joomla Facebook Connect support forum

Topic-icon How to remove: Just logged into the JFBConnect Facebook/Joomla demo

Active Subscriptions:

None
I need to remove
Just logged into the JFBConnect Facebook/Joomla demo site: sourcecoast.com/jfbconnect/
21 de enero a las 2:45 a través de SourceCoast Demo Site ·
I need to put other text / url or remove it

The JFBConnect wall / status setting does not work, I have tried it with different users, adding changing text where it says:
New User Status Message: If this is set to Yes, status updates are allowed through JFBConnect. This will post the messages below to the user's Facebook status message. If this is set to No, they will not be used.

There nothing showing up

can you guide me here please


Thanks in advance
The topic has been locked.
Support Specialist
Your site should not be posting the "Just logged into.. sourcecoast.com/jfbconnect" message at all. We don't have that set as a default or anything else, so if you're seeing that, it's probably an old post to your wall when you were testing JFBConnect.

Here are the settings to check for the Wall post to work:
1) Make sure the "Require Status Update Permission:" is set to Yes in the Permissions Tab
2) Make sure the "Update Status Message" is set to Yes in the "Status/Wall Settings" Tab
3) Make sure you have a message in both the New User and Returning User Message (if you want the last one to be posted every time a user logs in)

If you have those settings configured above, please post your URL, and we can test what we get. If it's still failing, we may ask for an administrator account to verify and test some configuration settings.

Hope this helps, and thanks!
The topic has been locked.
Active Subscriptions:

None
Ok doing that., I am now facing that the pop up is freezed and wont continue asking: You have been successfully authenticated by Facebook. I is just sitting there doing nothing, please see image.., is there away you could have a look at my set up in my back admin, I have spend a couble of days now with no luck, let me know where to send log in deatils, thanks
File Attachment:


then you could also look at the: Invite module popup is cut in half problem wich is poplished on: www.caracas.travel/es/eventos where the module is on the bottom and on the left side
Thanks in advance
The topic has been locked.
Support Specialist
Iveth,
It looks like you have JomSocial's Facebook Connect enabled. You must disable this for JFBConnect to work properly, as Facebook cannot have 2 different components trying to control registration. Please disable it. If you want to add the JFBConnect "Login With Facebook" button to the JomSocial login page, follow the instructions in the following post:
www.sourcecoast.com/forums/topic?id=1704&p=1#p7224

Please let us know if you have any other questions!
The topic has been locked.
Active Subscriptions:

None
OK, that sounds right, so I should disable: System - Jomsocial Facebook Connect Plugin, (when doing that the old Facebook botton is still there)!! and implement you code in jomsocial home page, is that correct?
trying the above I only get { JFBCLogin} no botton! And what do I do with my facebook botton next to it please see: caracas.travel/es/amigos
The topic has been locked.
Support Specialist
You need to also remove the Facebook API Key and Secret Key from the Facebook Connect tab in the JomSocial Configuration area. That will remove their button.

As for the our login button, make sure you're not using any spaces in the { JFBCLogin} tag.. we put them here so that it doesn't get replaced in the forums. The only other thing we require is that the JFBConnect System Plugin is enabled to replace the tab, but that needs to be enabled for a lot of other reasons as well.

Let us know if this helps or not!
The topic has been locked.
Active Subscriptions:

None
Yes, I understand now, it is working, thanks

Now I would like to add the botton here:

<?php defined('_JEXEC') or die('Restricted access'); ?>
<?php if(JPluginHelper::isEnabled('authentication', 'openid')) :
$lang = &JFactory::getLanguage();
$lang->load( 'plg_authentication_openid', JPATH_ADMINISTRATOR );
$langScript = 'var JLanguage = {};'.
' JLanguage.WHAT_IS_OPENID = \''.JText::_( 'WHAT_IS_OPENID' ).'\';'.
' JLanguage.LOGIN_WITH_OPENID = \''.JText::_( 'LOGIN_WITH_OPENID' ).'\';'.
' JLanguage.NORMAL_LOGIN = \''.JText::_( 'NORMAL_LOGIN' ).'\';'.
' var comlogin = 1;';
$document = &JFactory::getDocument();
$document->addScriptDeclaration( $langScript );
JHTML::_('script', 'openid.js');
endif; ?>
<form action="<?php echo JRoute::_( 'index.php', true, $this->params->get('usesecure')); ?>" method="post" name="com-login" id="com-form-login">
<table width="100%" border="0" align="center" cellpadding="4" cellspacing="0" class="contentpane<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>">
<tr>
<td colspan="2">
<?php if ( $this->params->get( 'show_login_title' ) ) : ?>
<div class="componentheading<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>">
<?php echo $this->params->get( 'header_login' ); ?>
</div>
<?php endif; ?>
<div>
<?php echo $this->image; ?>
<?php if ( $this->params->get( 'description_login' ) ) : ?>
<?php echo $this->params->get( 'description_login_text' ); ?>
<br /><br />
<?php endif; ?>
</div>
</td>
</tr>

</table>
<fieldset class="input">
<p id="com-form-login-username">
<label for="username"><?php echo JText::_('Username') ?></label><br />
<input name="username" id="username" type="text" class="inputbox" alt="username" size="18" />
</p>
<p id="com-form-login-password">
<label for="passwd"><?php echo JText::_('Password') ?></label><br />
<input type="password" id="passwd" name="passwd" class="inputbox" size="18" alt="password" />
</p>
<?php if(JPluginHelper::isEnabled('system', 'remember')) : ?>
<p id="com-form-login-remember">
<label for="remember"><?php echo JText::_('Remember me') ?></label>
<input type="checkbox" id="remember" name="remember" class="inputbox" value="yes" alt="Remember Me" />
</p>
<?php endif; ?>
<input type="submit" name="Submit" class="button" value="<?php echo JText::_('LOGIN') ?>" />
</fieldset>
<ul>
<li>
<a href="<?php echo JRoute::_( 'index.php?option=com_user&view=reset' ); ?>">
<?php echo JText::_('FORGOT_YOUR_PASSWORD'); ?></a>
</li>
<li>
<a href="<?php echo JRoute::_( 'index.php?option=com_user&view=remind' ); ?>">
<?php echo JText::_('FORGOT_YOUR_USERNAME'); ?></a>
</li>
<?php
$usersConfig = &JComponentHelper::getParams( 'com_users' );
if ($usersConfig->get('allowUserRegistration')) : ?>
<li>
<a href="<?php echo JRoute::_( 'index.php?option=com_user&view=register' ); ?>">
<?php echo JText::_('REGISTER'); ?></a>
</li>
<?php endif; ?>
</ul>

<input type="hidden" name="option" value="com_user" />
<input type="hidden" name="task" value="login" />
<input type="hidden" name="return" value="<?php echo $this->return; ?>" />
<?php echo JHTML::_( 'form.token' ); ?>
</form>


where and how, thanks
The topic has been locked.
Support Specialist
I'm not exactly sure where you want to add the text, so I'll put it at the very bottom (Under the Register link). Hopefully this will help you:
<a href="<?php echo JRoute::_( 'index.php?option=com_user&view=register' ); ?>"> 
    <?php echo JText::_('REGISTER'); ?></a> 
    </li> 
  <?php endif; ?>
  <li>{JFBCLogin]</li>
</ul>

Replace the ] at the end of JFBCLogin with a }, and hopefully that helps, but if not, let us know!
The topic has been locked.
Active Subscriptions:

None
Alzander

Great that works, but now I am facing a problem and that is that my Jomsocial turns blank when I try to edit my font jomsocial profile and save it, I know from experience that it si some module or plugin interfering, spend most of the day with out any, luck I still have the problem, turning maximum error on I got this little error popping up but only once: /home/caracast/public_html/plugins/system/jfbcsystem.php on line 41, Can you help here and my link stop here: caracas.travel/es/amigos/mi-perfil/edit?tmpl= turning blank

Thanks in advance
The topic has been locked.
Support Specialist
Iveth,
Glad we made progress. I'd recommend disabling modules or plugins until you find the offending one. If disabling the System plugin fixes it for you, we'd love to know and will investigate further. We did look into our System plugin and can see where that warning is coming from, and it will be fixed in the next release. Since it's a warning, it shouldn't be causing your problem. However, we'll post here with the exact fix we implemented if you'd like to try it.

Let us know what you find, and hopefully, you'll disable the right module or plugin and be able to narrow down the issue further.

Thanks!
The topic has been locked.