FRVUSA
Forum Replies Created
-
What I did was establish an exact width for each button on the plugin options.
Then in the CSS…
#leftcontainerBox .buttons {
replaced float:left with text-align:centerI also put the same FB Like width as in the options in the tf_display.php (but I have it in spanish), and also in that file, added 2px padding to the LinkedIn because it wasn’t centering all the way.
Tested it on Safari, Firefox, Chrome, and Opera. I have no idea about IE.
Also started working again. Maybe something with Facebook API. I’m just glad it’s back
Same thing here.
And the other plugin FB2WP doesn’t even work for me
To elaborate on the error this is what I get:
Error while importing comments from Facebook: Error while getting the comments : Error while getting this user : An unknown error has occurred.
Mine is also showing the links and comments correctly and also says it’s successful after a second attempt but nothing is really imported.
Forum: Fixing WordPress
In reply to: Wrapping text around embedded video?<div style=”float:LEFT OR RIGHT;margin:0 15px 5px 0;”>
YOUTUBE EMBED CODE
</div>Forum: Fixing WordPress
In reply to: How to position embedded objects such as YouTube<div style=”float:LEFT OR RIGHT;margin:0 15px 5px 0;”>
YOUTUBE EMBED CODE
</div>Forum: Plugins
In reply to: [Facebook Comments Importer] Comments show with my Facebook avatarI got rid of the problem for now by erasing my facebook app permitions for myself on FB. I dont know before, but now it’s not populating the some users url. But at least it shows the “mystery man” avatar instead of mine. Maybe those whose url are not being populated would’ve been the ones showing my avatar, but why is that?
Forum: Plugins
In reply to: [Facebook Comments Importer] Comments show with my Facebook avatarOkay, went back to id.
Now the pictures show correctly in the posts, but not on my Dashboard and not on my “recent comments” section (provided by another plugin but it was doing fine for that one day).
I like your plugin better than the other comments importer and will continue to use it, but I’d surely appreciate the help
Forum: Plugins
In reply to: [Facebook Comments Importer] Comments show with my Facebook avatarNo clue why but it did the trick, for one day, now it’s back to my profile picture. Yes in my dashboard it also shows my picture. I’ll revert back to the original code and see what happens.
Regarding the avatars, what worked for me was:
In the file wp-content/plugins/facebook-comments-importer/fbci.class.php
Line 236 is
“author_picture” => “https://graph.facebook.com/”. $user[“id”] .”/picture”,
I changed it for
“author_picture” => “https://graph.facebook.com/”. $user[“uid”] .”/picture”,
Hope it helps
Forum: Plugins
In reply to: [Facebook Comments Importer] Comments show with my Facebook avatarWell after all the reading last night I found the solution while trying to fix something else in another plugin.
So for future reference, what worked for me was:
In the file wp-content/plugins/facebook-comments-importer/fbci.class.php
Line 236 is
"author_picture" => "https://graph.facebook.com/". $user["id"] ."/picture",
I changed it for
"author_picture" => "https://graph.facebook.com/". $user["uid"] ."/picture",
Hope it helps