AHWEBDEV
Forum Replies Created
-
Hi @forestofpeace create your own thread please in future.
Go in the settings of the facebook awd plugin, and turn the mode debug to Off. save settings.
Forum: Plugins
In reply to: [Facebook AWD All in one] Error on Login / User Name not showingHi, I looked on your site.
There is a couples of problem on your site.
1. No DoctypeFound in the header html of your site.
This can result into a web that can’t be read by robots. Simply because your HTML is not valid.2. Duplicated html tag. the tag <html> is duplicated on your site.
Please check the file header.php of your theme.3. You are adding the facebook library manually in you code just after the body tag and the channel url is not valid.
4. No Facebook AWD plugin found on your site.
You should first fix your html code. Then try to install Facebook AWD.
A good point to start is to test it with the default theme of wordpress. You will see that it works.
Also be sure to use the 1.5.2
Forum: Plugins
In reply to: [Facebook AWD All in one] Several problems with the pluginAnd please use the html5 version, as fbml tags will be removed in next release.
Forum: Plugins
In reply to: [Facebook AWD All in one] Several problems with the pluginHi,
For the publish, be sure to have the publish stream perms.
To publish on your porifle, be sure to be logged on your site admin using facebook. For pages this is not required.For the facebook comments can you give me an example ?
thks.Hi @psyzgb You have to create an app on facebook, and then you will have your own app id key and app secret key.
Read this post to learn more.
https://facebook-awd.ahwebdev.fr/documentation/create-an-app-on-facebook/Forum: Plugins
In reply to: [Facebook AWD All in one] Plugin stopped workingHi everybody, and @aidwa the 1.5.2 should fix all your problems with the plugin.
Forum: Plugins
In reply to: [Facebook AWD All in one] Plugin stopped workingThe version 1.5.1 is a fix for the problem of the 1.5 update.
The version 1.5.1 should fix everything.If you have like button error, and you are using the box as javascript, that mean your site have conflict with other plugin.
Forum: Plugins
In reply to: [Facebook AWD All in one] Plugin stopped working@aidwa can you said what is your problem ?
Forum: Plugins
In reply to: [Facebook AWD All in one] Who likes my posts?Yes maybe privacy settings in your browser
@ganesh123 the app request only works with app canvas.
Try to check you error log to see what’s wrong.
Also be sure to be admin, and to do not modifu default WP roles and capabilities because the plugin will play with them.
In wait of an update you can try to download the master version (beta) on the gitHub repository of this plugin.
https://github.com/AHWEBDEV/Facebook-AWD
Thanks.
Forum: Plugins
In reply to: [Facebook AWD All in one] [Plugin: Facebook AWD All in one] Install errorSo will have problem, if this plugin remove the default roles the plugin can’t work.
The plugin provide multiple features depending of the user roles.
As example, an editor can select pages in admin to publish on…
So if the plugin redefine the capabilities on role this can’t work.To help you understand, you can look in the class AWD_facebook.php
/** * Set Admin Roles * Add FB capabalities to default WP roles * @return void */ public function set_admin_roles() { $roles = array( 'administrator' => array( 'manage_facebook_awd_settings', 'manage_facebook_awd_plugins', 'manage_facebook_awd_opengraph', 'manage_facebook_awd_publish_to_pages' ), 'editor' => array( 'manage_facebook_awd_publish_to_pages', 'manage_facebook_awd_opengraph' ), 'author' => array( 'manage_facebook_awd_publish_to_pages' ) ); $roles = apply_filters('AWD_facebook_admin_roles', $roles); foreach ($roles as $role => $caps) { $wp_role = get_role($role); foreach ($caps as $cap) { $wp_role->add_cap($cap); } } }
Maybe this will help you to add the good capabilities to your custom roles…
Please if you want more support, consider to use gitHub repository, it’s really better to work on gitHub. Svn and wordpress plugin repositories really sucks…
This is a sketchy part, because we do not know if the class added by other plugin is up to date.
You can look into the file class.facebook_awd_api.php this is where i extend the facebookk class.
Forum: Plugins
In reply to: [Facebook AWD All in one] [Plugin: Facebook AWD All in one] Install errorYou have a plugin that modify or remove the default role of WP ?