1.My WordPress Theme dont support widgets, What can i do?
If your wordpress don’t support widgets, you can add the FB Connect widgets manually:
$args=array();
$args['loginbutton'] = "xlarge"; //value: small,medium,large,xlarge
$args['maxlastusers'] = "10"; //Max. user photos to display
$args['avatarsize'] = "30"; //User photos size
widget_FacebookConnector($args);
?>
2. IExplorer don’t show the login button and user photos
On some wordpress themes you need to modify your “header.php” file:
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml">
......
and check your “footer.php” theme file: if don’t have a < ?php wp_footer(); ?> line
Add it before the end body tag:
3. I can’t see the Send to Facebook checkbox, on the comments form
Check your comments.php Theme file, and add this code line:
...
<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
...
...
<?php do_action('comment_form', $post->ID); ?>
</form>
...
...
4. I can’t see the Facebook user photo on the comments
FB Connector plugin use the get_avatar WordPress filter, to show the Facebook user photo or the Gravatar user image (based on the email).
Sample comments.php theme file that call this filter:
...
<?php foreach ($comments as $comment) : ?>
<li <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>">
<?php echo get_avatar( $comment, 32 ); ?>
<cite><?php comment_author_link() ?></cite> Says:
...
...
5. How to configure the invitation limit
Facebook changed the notification/invitation limit from a fixed to a fluctuating limit based on user spamminess ratings. A formula based on some parameters like your historical invitation acceptance rate.
From your Facebook application admin page, you can see the current “allocation” limits.
Go to: Facebook app admin->statistics->Allocations.
6. How to show post author avatar (Gravatar or Facebook profile)
Use this code at the WP bucle (index.php or single.php):
7. How to show facebook login button without the widget
Edit your WP theme files and paste this code:




Hi Javier, pressing the Login button showing a facebook error message + it seem that the new fb apps do not have an API number … Did you came across problems like that?
hola, tengo un problema, siempre que intento acceder con fb, me dice que ha ocurrido un error, por qué pasa esto?
hola,
I have problems with the upload of media with the wp version 3.3, if I disable the plugin, upload it works properly, how do I fix rpoblema?
Hi,
please try the new 4.3.4 version
i am having issue when i tried to logout it showing 404 error
my site doesn’t support secure ssl
Hi Javier,
Muchas gracias por el plugin!
Since I have updated WP in 3.3, my users are redirected to the homepage instead of being on the same page when they log in.
Do you know where it should come from ?
Thx
Joe
My issue is fixed.
There was a conflict with another widget
I’ve some questions about the plugin. But not before I’ve said I’m a fan of this plug-in already for a while.
Since a few days I’ve a note in the FB comments element, saying: “Warning: this comments plugin is operating in compatibility mode, but has no posts yet. Consider specifying an explicit ‘href’ as suggested in the comments plugin documentation to take advantage of all plugin features.”
I cannot figure out where this is coming from and not how to fix this.
A second question is how I can make the width of the element 100% in stead of a fixed width (that doesn’t work well in the mobile theme.
Hope you can help me out. If you want to check, my site is http://www.creatov.nl.
Thanks a lot!
Warning problem:
i haven’t a good solution, you can use the 4.3.3 plugin version and select the “Use post URL as href” option, in the “feed template” plugin configuration. The big problem is that you lost the old facebook comments, but is the best option for a new plugin install.
100% width:
The Facebook comments only works wit fixed with
Im using BBPress plugin for my Forum.
My problem is…
When you login to my forum using your Facebook account, it will successfully logged you in. The problem is, When you try to view your profile, it will give you a 404 error bacause you are logged-in using Facebook. When you try to view other profiles that are logged-in NOT using Facebook, you’ll be able to view their profile successfully.
How do I solve this one?
By the way, Thankyou Javier for a good plugin
Hi Javier is there a way to only show the login button without the visit friends and comment boxes underneath it?
Thanks
Hi Morne,
please try the code of FAQ 7
testing
Where the plugin stores the info gained from the user by the field Perms to request?
Hi, I intalled this plugin and I have to say its the best I have found, but I would like to chage a couple of things:
First, when users login to my site with facebook from the /wp-admin they are directed to their admin page, and I want them to be directed to the page. I have a redirector plugin that send all the suscribers to the page when the login but with facebook it doesnt work.
Second, the logout is very difficult because the users logout from the site and from facebook at the same time. I there a way to only logout from the site?
Please somebody help me
test
I have place folder in plugin folder.and when i activate the plugin it give an Error.
Plugin could not be activated because it triggered a fatal error.
Facebook needs the CURL PHP extension .
Can any suggest?
why this happen??
The new facebook PHP SDK use CURL, you need to request yo your hosting provider for install CURL extension in your server.
Hello I Love this plugin in several blogs i have
I have the problem that cannot see the comments facebook box in post but yes in home page.
Can u help me ?
thanks in advance
Puede ser un problema del theme de WP que estas utilizando.
¿los comentarios normales de wp si se muestran?
¿en la ocnfiguración del plugin has activado que se muestren los comentarios de Facebook?
¿puedes enviar la url de tu blog?
Hola, como cambio el lenguaje de la aplicacion?
El plugin utiliza el idioma del propio WP. En esta dirección puedes encontrar ayuda sobre este tema: http://codex.wordpress.org/Installing_WordPress_in_Your_Language
Como puedo lograr guardar en la base de datos de usuario de wordpress datos como cumpleaños, localidad, etc???
gracias
El plugin almacena automáticamente una serie de datos del perfil del usuario (email, edad, sexo, localidad…), si el usuario concede los permisos necesarios.
En la configuración del plugin->”Main options”->”Perms to request” puedes indicar la lista de permisos de Facebook que quieres solicitar al usuario (separadas por comas). Puedes ver la lista de permisos completa de Facebook aqui:
http://developers.facebook.com/docs/reference/api/permissions/