Title: AHWEBDEV's Replies - page 22 | WordPress.org

---

# AHWEBDEV

  [  ](https://wordpress.org/support/users/ahwebdev/)

 *   [Profile](https://wordpress.org/support/users/ahwebdev/)
 *   [Topics Started](https://wordpress.org/support/users/ahwebdev/topics/)
 *   [Replies Created](https://wordpress.org/support/users/ahwebdev/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/ahwebdev/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/ahwebdev/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/ahwebdev/engagements/)
 *   [Favorites](https://wordpress.org/support/users/ahwebdev/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 316 through 330 (of 504 total)

[←](https://wordpress.org/support/users/ahwebdev/replies/page/21/?output_format=md)
[1](https://wordpress.org/support/users/ahwebdev/replies/?output_format=md) [2](https://wordpress.org/support/users/ahwebdev/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/ahwebdev/replies/page/3/?output_format=md)…
[21](https://wordpress.org/support/users/ahwebdev/replies/page/21/?output_format=md)
22 [23](https://wordpress.org/support/users/ahwebdev/replies/page/23/?output_format=md)…
[32](https://wordpress.org/support/users/ahwebdev/replies/page/32/?output_format=md)
[33](https://wordpress.org/support/users/ahwebdev/replies/page/33/?output_format=md)
[34](https://wordpress.org/support/users/ahwebdev/replies/page/34/?output_format=md)
[→](https://wordpress.org/support/users/ahwebdev/replies/page/23/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook AWD All in one] [Plugin: Facebook AWD All in one] Redirect URL after logging in](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-redirect-url-after-logging-in/)
 *  Plugin Author [AHWEBDEV](https://wordpress.org/support/users/ahwebdev/)
 * (@ahwebdev)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-redirect-url-after-logging-in/#post-2312107)
 * I do not understand what you said before…
 * You got problems with login Or logout now ?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook AWD All in one] [Plugin: Facebook AWD All in one] Redirect URL after logging in](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-redirect-url-after-logging-in/)
 *  Plugin Author [AHWEBDEV](https://wordpress.org/support/users/ahwebdev/)
 * (@ahwebdev)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-redirect-url-after-logging-in/#post-2312105)
 * 1. Try first by settings redirect url in general settings and in widget as null.
 * 2. If that not works:
    The plugin is working with actions hook. You can overide
   the login custom callback as you want using it in php function.php or in your
   plugins.
 * You must replace the function afected to the **AWD_facebook_redirect_login** 
   hook.
    This function is called when the user was logged in.
 * How to (in functions.php or in your plugins):
 *     ```
       //declare function to use for login redirect
       function my_custom_redirect_fblogin()
       {
           echo 'if(window.location != window.parent.location){    
   
           		// page is in iframe so we need to refresh it
           		top.parent.href = "'.$this->facebook_page_url.'";
   
           	  }else{
   
           		// page is displayed standalone
                   window.parent.reload(true);
   
           	  }
       	';
   
       }
   
       //remove native function form Facebook AWD redirect after login.
       remove_action('AWD_facebook_redirect_login','js_redirect_after_login');
   
       //add the function to the hook.
       add_action('AWD_facebook_redirect_login','my_custom_redirect_fblogin');
       ```
   
 * **_Note:_** for the moment, you must let hte field, login url redirect empty,
   in widget and settings.
    until i add, fix and test the code on the plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook AWD All in one] [Plugin: Facebook AWD All in one] Redirect URL after logging in](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-redirect-url-after-logging-in/)
 *  Plugin Author [AHWEBDEV](https://wordpress.org/support/users/ahwebdev/)
 * (@ahwebdev)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-redirect-url-after-logging-in/#post-2312102)
 * And i add that since 1st october for facebook tab, you MUST provide a HTTPS url,
   
   because if users on facebook are using https, and if your site cannot be in https,
   so facebook won’t allow your app to work.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook AWD All in one] [Plugin: Facebook AWD All in one] Redirect URL after logging in](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-redirect-url-after-logging-in/)
 *  Plugin Author [AHWEBDEV](https://wordpress.org/support/users/ahwebdev/)
 * (@ahwebdev)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-redirect-url-after-logging-in/#post-2312101)
 * Redirection is coded in javascript with a window.location.href = “URL”
    Before
   it was window.location.reload(1); but it was changed because there is an issue.
 * I need to work on the plugin to add a better work flow and allow him to work 
   in a facebook tab.
 * Can you submit a ticket here
    [http://trac.ahwebdev.fr/projects/facebook-awd](http://trac.ahwebdev.fr/projects/facebook-awd)
 * thx
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook AWD All in one] [Plugin: Facebook AWD All in one] logout from wp and logout from fb](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-logout-from-wp-and-logout-from-fb/)
 *  Plugin Author [AHWEBDEV](https://wordpress.org/support/users/ahwebdev/)
 * (@ahwebdev)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-logout-from-wp-and-logout-from-fb/#post-2387311)
 * No sorry it’s not possible with facebook.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook AWD All in one] [Plugin: Facebook AWD All in one] Like button, error message](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-like-button-error-message/)
 *  Plugin Author [AHWEBDEV](https://wordpress.org/support/users/ahwebdev/)
 * (@ahwebdev)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-like-button-error-message/#post-2354472)
 * Like box is not the same thing.
 * A like box work with the url of a facebook page.
    So your server will never been
   call by a like box.
 * When a user click on the like buton (not in like box) facebook will check if 
   url exists in cache.
    If not he will fetch your meta og tags by calling your 
   server.
 * if your server responds with a redirect 403 before return the good datas, facebook
   will not know that.
 * And i think it’s not good for your SEO…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook AWD All in one] [Plugin: Facebook AWD All in one] Logged as admin](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-logged-as-admin/)
 *  Plugin Author [AHWEBDEV](https://wordpress.org/support/users/ahwebdev/)
 * (@ahwebdev)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-logged-as-admin/#post-2285002)
 * Please submit a new bug tracker ticket
    here => [http://trac.ahwebdev.fr/projects/facebook-awd](http://trac.ahwebdev.fr/projects/facebook-awd)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook AWD All in one] [Plugin: Facebook AWD All in one] featured image and fbid not working?](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-featured-image-and-fbid-not-working/)
 *  Plugin Author [AHWEBDEV](https://wordpress.org/support/users/ahwebdev/)
 * (@ahwebdev)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-featured-image-and-fbid-not-working/#post-2381011)
 * fb:admins should not be your email,
 * fb:admins is ID Facebook, it’s number that identify you on facebook.
    You can
   add multiple admin id, sperate them by coma.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook AWD All in one] [Plugin: Facebook AWD All in one] Having issue in IE 8 for popup login of faceboob AWD](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-having-issue-in-ie-8-for-popup-login-of-faceboob-awd/)
 *  Plugin Author [AHWEBDEV](https://wordpress.org/support/users/ahwebdev/)
 * (@ahwebdev)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-having-issue-in-ie-8-for-popup-login-of-faceboob-awd/#post-2375392)
 * No more support here, please follow link above…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook AWD All in one] [Plugin: Facebook AWD All in one] Content of post notr showing on facebook](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-content-of-post-notr-showing-on-facebook/)
 *  Plugin Author [AHWEBDEV](https://wordpress.org/support/users/ahwebdev/)
 * (@ahwebdev)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-content-of-post-notr-showing-on-facebook/#post-2333514)
 * Do not worry, iwiil do more conception before paste it in the source code.
 * You can create a new ticket.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook AWD All in one] [Plugin: Facebook AWD All in one] Content of post notr showing on facebook](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-content-of-post-notr-showing-on-facebook/)
 *  Plugin Author [AHWEBDEV](https://wordpress.org/support/users/ahwebdev/)
 * (@ahwebdev)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-content-of-post-notr-showing-on-facebook/#post-2333512)
 * Hi, Nice tips,
 * Please mihaiil can you paste this code to the tracker of the plugin ?
 * This will be added in next release for 0.9.8
 * HERE => [http://trac.ahwebdev.fr/projects/facebook-awd](http://trac.ahwebdev.fr/projects/facebook-awd)
 * thx!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook AWD All in one] [Plugin: Facebook AWD All in one] Having issue in IE 8 for popup login of faceboob AWD](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-having-issue-in-ie-8-for-popup-login-of-faceboob-awd/)
 *  Plugin Author [AHWEBDEV](https://wordpress.org/support/users/ahwebdev/)
 * (@ahwebdev)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-having-issue-in-ie-8-for-popup-login-of-faceboob-awd/#post-2375207)
 * Hi, to help you please follow this link and submit a new ticket on the support
   page of the plugin.
 * [http://trac.ahwebdev.fr/projects/facebook-awd](http://trac.ahwebdev.fr/projects/facebook-awd)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook AWD All in one] [Plugin: Facebook AWD All in one] user connects or comments username](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-user-connects-or-comments-username/)
 *  Plugin Author [AHWEBDEV](https://wordpress.org/support/users/ahwebdev/)
 * (@ahwebdev)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-user-connects-or-comments-username/#post-2370037)
 * > but a user that connects up with Facebook can’t login with their created wordpress
   > account. They have to hit connect to facebook anytime they login.
 * It’s not true, WordPress send an email to users connected with Facebook on your
   site to give them a password and username.
 * If they do not receive email, they can ask to renew password.
 * This feature is already in the pugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook AWD All in one] [Plugin: Facebook AWD All in one] It crashed Graph Object and Comments](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-it-crashed-graph-object-and-comments/)
 *  Plugin Author [AHWEBDEV](https://wordpress.org/support/users/ahwebdev/)
 * (@ahwebdev)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-it-crashed-graph-object-and-comments/#post-2373441)
 * Hi, when you change image in the settings, you must go FIRST to the debugger 
   url linter of facebook to clear cache, then you will be able to share correct
   image.
 * If your site use cache, you must clear cache. because each time you click on 
   like button, facebook will not comme and fetch info from your site if he already
   has in memory.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook AWD All in one] [Plugin: Facebook AWD All in one] Like button, error message](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-like-button-error-message/)
 *  Plugin Author [AHWEBDEV](https://wordpress.org/support/users/ahwebdev/)
 * (@ahwebdev)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-facebook-awd-all-in-one-like-button-error-message/#post-2354459)
 * This problem come from your server…
 * Each time facebook try to get a page on your site, it seems your server do not
   let facebook read your pages. and send a 403 error code.
 * Or maybe some ressources that are calling in your code are missing.
 * You should contact your host.

Viewing 15 replies - 316 through 330 (of 504 total)

[←](https://wordpress.org/support/users/ahwebdev/replies/page/21/?output_format=md)
[1](https://wordpress.org/support/users/ahwebdev/replies/?output_format=md) [2](https://wordpress.org/support/users/ahwebdev/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/ahwebdev/replies/page/3/?output_format=md)…
[21](https://wordpress.org/support/users/ahwebdev/replies/page/21/?output_format=md)
22 [23](https://wordpress.org/support/users/ahwebdev/replies/page/23/?output_format=md)…
[32](https://wordpress.org/support/users/ahwebdev/replies/page/32/?output_format=md)
[33](https://wordpress.org/support/users/ahwebdev/replies/page/33/?output_format=md)
[34](https://wordpress.org/support/users/ahwebdev/replies/page/34/?output_format=md)
[→](https://wordpress.org/support/users/ahwebdev/replies/page/23/?output_format=md)