Facebook Like Button with NextGen Gallery
why not use this plugin ? NextGEN Facebook Adds Facebook HTML meta tags to webpage headers, including featured images. Also includes optional Like and Send Facebook buttons.
why not use this plugin ? NextGEN Facebook Adds Facebook HTML meta tags to webpage headers, including featured images. Also includes optional Like and Send Facebook buttons.
That function is used to render button and it’s called inside fpp_post_submitbox_start_action(), which does some conditional check and is hooked into post_submitbox_start action. First you need to remove plugins original action and use your own with conditional to render button. See code example below. // Remove original action remove_action( ‘post_submitbox_start’, ‘fpp_post_submitbox_start_action’ ); /** * Renders … Read more
Change your Facebook plugin. I recommend you change the plugin to the official Facebook plugin – it’s been made by some of the same people and allows you to publish immediately. Image in your RSS feed: Your RSS feed should be found here (but it’s not there?) because you are using another RSS feed plugin. … Read more
First, you’ll need to set up a WordPress cron job, and take note of its shortcomings… Using the Codex example, this is a structure of how this could be done: add_action( ‘my_daily_event’, ‘do_this_daily’ ); add_action( ‘wp’, ‘my_activation’ ); function do_this_daily() { // 1) Use get_posts to retrieve your Post Type // 2) Iterate through the … Read more
Change your permission to 664 to the uploads and its cache directory inside. Learn more here.
http://developers.facebook.com/docs/reference/fql/comment/ According to this you can query the comments can you convert this to wordpress query?
Facebook apps are just an iFrame back to a page you host somewhere. So you could build out a page in your WordPress site with your subscription options. For example, using JetPack http://jetpack.me/support/subscriptions/. And then embed that page into a Facebook app and add it as a tab to your Facebook page. 🙂
Facebook meta tags not working properly on WordPress Site
“I want to modify the get_the_title function” — Do you mean you want to modify WordPress’s get_the_title(), or simply modify what it returns? If the former, I must strongly advise against it. You shouldn’t hack core files in WordPress. If you want to modify what it returns, use the the_title filter.
I solved id by myself. For those who want do the same trick: go to bliss-facebook-likebox plugin folder, edit cool-fb-likebox.php. Near the bottom of file there will be an $url variable. Change: $url = urlencode($get_cfbl_options[‘fbpageurl’]); to: wp_reset_query(); global $post; $site-id = 1; // use your own needed number if( is_page($site-id) || $post->post_parent == ‘.$site-id.’) { … Read more