AHWEBDEV
Forum Replies Created
-
are you using the last version of the master plugin ?
What kind of settings ? is your theme using the wp_list_comments() function to display comment list ? or did you choose to add them as html ?
In the plugin settings, in there is an app request tab. open it.
At the bottom you will see the shortcode to use, and a link with “show option”
Of course you can, You just have to remove the action that add this metabox.
Let me show you:
you can remove the metaboxes using the default function from WP.
<?php function remove_facebook_awd_metaboxes(){ global $AWD_facebook; $post_types = get_post_types(); foreach($post_types as $type){ if($AWD_facebook->options['open_graph_enable'] == 1){ remove_meta_box($AWD_facebook->plugin_slug."_open_graph_post_metas_form", $type , 'normal'); } //Like button manager on post page type remove_meta_box($AWD_facebook->plugin_slug."_awd_mini_form_metabox", $type , 'side'); } } add_action('admin_menu', 'remove_facebook_awd_metaboxes', 1000);Add that in your functions.php.
This should remove the opengraph form oon all post types, and will remove the manager too.
Use the pattern %POST_IMAGE% inside the opengraph form.
If the plugin cannot find featured image, he will try to find an image inside the content.
If no image was found, the plugin will use the picture of your app.
When you connect with Facebook, You must be sure your email from your admin account is the same as your facebook account.
If not, the plugin will create a new users related to your facebook account as “subscribers”.
sorry bad link
http://trac.ahwebdev.fr/projects/facebook-awd
For info the problem is located inside the base plugin, in the AWD_facebook.php file
the method url_to_postid() return 0 instead of the good post id.
I created this method to use it instead the default one form WP that does not return the post id of custom post type.If you do not use them, you can simply replace the content of the method by
return url_to_postid($post_id);Until i found a fix, it can’t work with custom post types.
Hi,
The content of like box is managed by Facebook. Not by the plugin.
But normally, you should see faces.
Try to check your cookie privacy.Forum: Fixing WordPress
In reply to: Facebook opengraph actions meta data and post trigger aggregationHi,
. Now the only option is to buy OpenGraph Actions plugin from Your website?
Yes, This plugin represent to much work for me to stay free.
Some updates are planified.is it compatible with free version ?
Yes, For sure, Facebook AWD open graph action is a sub plugin of Facebook AWD all in one. He must be!
is this the reason why I cannot submit the action (“You must publish at least one action to your Timeline using this action type. Review the documentation.”)?
Before to submit an action for review, you must be sure the plugin is working. Why facebook will loose time checking your site if you did not tested it ?
If you use the updated (1.3.1) plugin, You actions are not called anymore. Because all the system is no more in it.
If you get this error from Facebook is because Before to submit an action, You should test it and be sure the action is published on your timeline and in activity. Because Facebook saw that your action has never been tested on your site with your admin user.Hi, it’s very difficult to me to follow all bugs at the time.
There is a good place to declare BUGS
http://www.trac.ahwebdev.fr/projects/facebook-awdCan you create a ticket on it with a backlink from here ? to help me remember that.
Thx.
Forum: Plugins
In reply to: facebook-awd – Update crashBefore to install plugins, Please verify first if it’s compatible with your WP version.
Forum: Fixing WordPress
In reply to: Facebook opengraph actions meta data and post trigger aggregationHi,
im currently using the base plugin updated it. I use my custom like box with a custom css stylesheet. I have just noticed the like and send buttons wont work now. they wont show up. why is this? how can i work around it? i like my custom like box and dont want to change it. im aware that using your own facebook codes will sometimes break your codes. Let me know how to fix this please.
Maybe because you break the code with your css ?
Also i would like to purchase the custom actions plugin. How does it work? can i configure my own actions and aggregations? or is it automated. Where would i create my actions? on facebook dev or in your plugin?
You can configure your own action related to your objects, the aggregation is configurable ont he facebook side.
Objects are configured with opengraph form in the base plugin.
Actions are created on Facebook side and call via shortcode button or event tracker.Read the FAQ and documentation on the plugin page.
I understand your point of view, but i really cannot do what you mean.
Because i do not know if the user is connected from Facebook or from WP.So if the user logout from Facebook, and come on your site, i cannot logout them from WP, because i do not know if they were logged in with Facebook or with WP.
If i force logout, anyone that is not connected to facebook will be logged out. And this is not what the plugin suppose to do.
This plugin do not replace the existing way for login, he simply add a new way to users to login.
So i just try it, can said me if all fields are not empty in rows in the table ?
Because it seems the plugin do not find the post id…
Can you post just a screen shot of some rows ?You said only 3 fields ?
The plugin should create a table like that:
CREATE TABLE $table_name ( id mediumint(9) NOT NULL AUTO_INCREMENT, post_id INT(11) NOT NULL, user_id INT(11) NOT NULL, fb_id BIGINT(30) NOT NULL, action tinytext NOT NULL, object text NOT NULL, url VARCHAR(255) NOT NULL, time datetime NOT NULL, UNIQUE KEY id (id) );