Facebook and WordPress
You can use the Facebook Comments for WordPress plugin or the Disqus Comment System, which allows comment login using Google, Twitter, Facebook, or OpenID accounts, and is totally import/export compatible with WP comments.
You can use the Facebook Comments for WordPress plugin or the Disqus Comment System, which allows comment login using Google, Twitter, Facebook, or OpenID accounts, and is totally import/export compatible with WP comments.
I’ve managed to find a solution to my problem. I solved it with three plugins Members User Role Editor Social Login The combination of these plugins allows you to who can log in, without telling them how to log in. More specifically, anyone will be able to log in with a social network, but they … Read more
There’s a reason people say that you shouldn’t download free themes from outside of wordpress.org, they might contain hidden surprises In your case, the theme inserts an advertisement at the beginning of the post content div: <div style=”position:absolute;top:0;left:-9999px;”>Want create site? Find <a href=”http://dlwordpress.com/”>Free WordPress Themes</a> and plugins.</div><div style=”clear: both”></div> Since the style.css indicates this is … Read more
I’m not sure this is what you’re looking for, but you can use publicize through wordpress to automatically use your blog posts as facebook status updates. Go into your Dashboard, select My Blogs, go to the Publicity column, check Facebook.
The most simple and easy-to-setup plugin for sharing button i ever used is ShareThis. This light-weighted plugin is fully customizable and is compatible with any CMS/non-CMS website. Simply head over to the link, include the JS file in your theme’s header or footer, and then call the share buttons wherever you want. It will only … Read more
I believe the new Social plugin takes care of that. Let me know if it works.
I read a little into the plugin you’re using and it says that it offers shortcode functionality. So I presume somewhere in the settings page for the plugin there is an option to stop it from injecting into all pages. The downside is that you’ll have to manual add in the shortcode to get the … Read more
How do post a Photo to Facebook when a post is published? [closed]
Go to Facebook developers site For example, the Like Plugin http://developers.facebook.com/docs/reference/plugins/like/ Generate the code. You’ll get the generated code back in 2 blocks. The first is the SDK that must be added once on your page… preferably after the opening <body> tag. Depending on your theme you can paste that directly into header.php. If you … Read more
reading the code of the Facebook Official Plugin I’ve seen that in open-graph-protocol.php It’s being applied the custom filter ‘fb_meta_tags’: .. $meta_tags = apply_filters( ‘fb_meta_tags’, $meta_tags, $post ); .. So in my plugin I’ve added a filter for ‘fb_meta_tags’ that adds/replace the image set from the Facebook plugin in this way: function clancat_product_fbmeta($meta_tags, $post){ .. … Read more