Posting to Facebook via WordPress – 500 Internal Error
Posting to Facebook via WordPress – 500 Internal Error
Posting to Facebook via WordPress – 500 Internal Error
Send Facebook server-side event using shortcode and Official Facebook Pixel plugin
You have a number of halfway options, but there is nothing that directly matches your requirements. That is because this is not something Facebook provides. Copy Paste Manual embedding Screenshots OEmbed Other software may claim to do this but it is a simulation/illusion, and will rely heavily on bespoke customisation, it isn’t really a facebook … Read more
The BuddyPress bar shows notifications e.g. when someone friends you. I think you have to search then for BuddyPress plugins that enable your 3 requirements. and add the code to the filter for the bar on top. or widget-tify the activity stream per user enriched with whatever more data Maybe you can even award points … Read more
The short answer is: kinda? To sync wall activities: http://buddystream.net/ To use Facebook Connect for logging in: http://wordpress.org/extend/plugins/bp-fbconnect/
The URLs are constructed in the wp-dragtoshare-extended.js Javascript file. For most services you can see how the customUrl is constructed and change it right there. For Twitter you should look a bit lower, in the isGD function, because it does an Ajax request to shorten the link – but maybe this is not needed anymore … Read more
You need to include their Facebook SDK in order to utilize fbml. FBML is also deprecated for use of xFBML. In this case, i would just recommend picking a wordpress / facebook plugin for what you need to do. As what you’re trying to do in code isn’t that simple.
You need to use a Plugin that manipulates the data sent via the Facebook Open Graph Protocol, e.g. Facebook Opengraph. There are several others, also. Related Posts How to control Facebook share information for the front page? Facebook is only displaying preview thumbnails that are 100px from my posts? Facebook sharing link is not showing … Read more
The Facebook Page Publish plugin is adding the og:description. Looking through the code in fpp_index.php at lines 843 – 851: $description = array(); if ($options[‘show_post_author’]) { $description[] = esc_attr(fpp_get_post_author($post));/*, ENT_COMPAT, ‘UTF-8’)*/ } if ($options[‘show_post_categories’]) { $categories = esc_attr(fpp_get_post_categories($post));/*, ENT_COMPAT, ‘UTF-8’)*/ if (!empty($categories)) $description[] = $categories; } echo ‘<meta property=”og:description” content=”‘.implode(‘ | ‘, $description).'”/>’; It appears … Read more
Why would you expect it to correctly guess your thumbnail? Facebook detects images based on the Open Graph protocol. If you don’t have a meta tag specifying the image for that page, the best you can hope for is FB guessing based on any images in the page. If you want to get the correct … Read more