AHWEBDEV
Forum Replies Created
-
And if you are looking in source code (ctrl + U on ff) no space ?
@hsiutayu are you sure that your code do not have any space before doctype ? if space are send before header, this can brake the plugin. (json encoded response)
Hi, no, the library jquery.cookie is used to stay on the same tabs when your submit form settings.
Your web host use mod_security, and it’s not compatible with this lib.
You can disable this lib.
open the file AWD_facebook.php and comment the line 428:
//wp_enqueue_script($this->plugin_slug.'-js-cookie',$this->plugin_url.'/js/jquery.cookie.js',array('jquery'));then open /js/facebook_awd.js and comment line 36 and remove comma at the end of line 35:
jQuery("#div_options_content_tabs").tabs({ fx: { opacity: 'toggle',duration:'fast'} //cookie: { expires: 30 } });this will disable cookie for tabs.
Can you try the dev version again ?
http://downloads.wordpress.org/plugin/facebook-awd.zip
I changed the moment when init sdk is call, now in wp_loaded hook action.
And i add in the action hook send_headers:
header('P3P: CP="CAO PSA OUR"');Someone can try that version and tell if refresh is always here ?
Yes, i do not know why PHP can’t find the cookie create by javascript using php sdk and JS sdk
This plugin use Oauth2 to connect to facebook, so session is no more used to share info between JS and PHP. Now it’s cookie format. But it Seems the cookie was not finded by php.
I do not have the time to work on it this week, i will try some test on the next week.
Hi,
Re download the last version 0.9.7.6, i delete line with header…Forum: Plugins
In reply to: [Facebook AWD All in one] [Plugin: Facebook AWD All in one] Logged as adminYes i update it, but you can delete it too.
Hi,
– if user can not register, why i can use the plugin in my blog?
This plugin need the registration to be allowed by you in wordpress settings, if you pretend to use the fb connect module.
Because This plugin will register users, You just need to go in wordpress settings and set it. This post exmplain where to do it.– if someone, who are not in my facebook friend list, click my like button, why his/her image can not show up? (i’d activated the show faces option).
You should use xfbml for faces, because the height of the iframe is dynamic when it’s xfbml.
But if you use a like button in iframe, you must set a height bigger
to see facesForum: Plugins
In reply to: [Facebook AWD All in one] [Plugin: Facebook AWD All in one] Logged as adminHi,
To unsync an account, you should first connect with WP account.
Then connect you with facebook account of your choice.Then facebook account and WP account will be linked.
To unsync an account.
You can’t in the interface.
But you can delete option of linking.
fb_email
fb_uid
You can delete it adding a little code in your theme functions.php file/** * Unsync Facebook account with action = unsync_fb * To use it, call an url of your site, and to the end of the url the * get parameter http://AN_URL_ON_YOUR_SITE/?action=unsync_fb */ function unsync_fbaccount(){ $global $AWD_facebook; if($_GET['action']=='unsync_fb'){ update_user_meta($AWD_facebook->current_user->ID,'fb_email',''); update_user_meta($AWD_facebook->current_user->ID,'fb_uid',''); } } //this add the function to the init of plugins Facebook AWD add_action('AWD_facebook_plugins_init','unsync_fbaccount');I will add it to the next release with possibility to unsync from admin.
You can but if you use automatic insertion of FB comments in your page, if you remove WP comments, you will remove fb comments too.
So you must disable the automatic way, and insert shortcodes instead.
You can read this post in support forum:
http://wordpress.org/support/topic/facebook-comment-and-facebook-admin-area?replies=37#post-2229644It’s normal… this plugin do not pretend to do that.
To moderate Facebook comments, you must moderate them directly from your xfbml comments box (settings links), or via the tool in the application settings on facebook.com.
Like button work with openGraph protocol.
Hi you should understand first what’ is openGraph.
openGraph is a list of informations that you need to have in the header of each page or posts on your site to give special infos about posts and pages to facebook.
1 you should activate openGraph in global settings of the plugin
2 you should go in the opengraph settings, and fill the form with global settings. (each settings can be redefined on single page or post.)
3 you should add a like button as you do, on each post and page.When you click on a like button, facebook will come and see what you are liking. he will read infos you added via openGraph, and publish it on your wall.
You should try the debbuger from facebook to see what is missing.
https://developers.facebook.com/tools/debugYou can submit an url from your site. This page will tell you what’s wrong with your configuration.
You can follow this tutorial (in french, you should use the translation tool at hte bottom of the site.)
http://www.ahwebdev.fr/plugins/documentation/facebook-awd/configurer-opengraph-protocol-facebook-sur-wordpress.htmlCool!
Merci de me dire si ça roule encore ce soir!I have a last solution to try…
– You can open the plugin folder,
– go in to facebook-awd folder.
– open the file AWD_facebook.php
– go to the line 762 and comment it.
as
//do_action('wp_login', $user_object->user_login);This action can be redefine by plugin. It’s possible your theme use it, and redirect on a bad url… or try to do something else.
Maybe that can be worked without this line.
Try and tell me.
(Or you can retry to download the last dev version)Do you have this problem in admin too ?