Showing posts with label Facebook. Show all posts
Showing posts with label Facebook. Show all posts

Tuesday, January 29, 2013

How to Unsubscribe to Celcom Facebook SMS Subscription

In order to unsubscribe to Celcom Facebook SMS subscription, which will charge you RM1 weekly, text "STOP All" (without quotation marks) to 32665.

You will receive a text message back confirming that Facebook SMS subscription has been deactivated.

Thursday, June 30, 2011

How to disable automatic Facebook calendar entries addition on BlackBerry

[caption id="" align="alignnone" caption="BlackBerry Facebook Options"][/caption]

Once you install Facebook application on your BlackBerry, Facebook will invade the BlackBerry calendar. Birthdays and events will be added automatically.

How to disable this annoying feature?

These are the steps needed to disable it:

  1. Open Facebook app. Under Options, uncheck the sync. calendar and contacts options. Close Facebook app.

  2. Open Options, Device, Advanced System Settings, Service books. Delete all Facebook related entries.

  3. Open Options, Device, Advanced System Settings, Default Services. Select the default for calendar, contact list and messaging.


Please note that you might need to redo all these steps, if you update Facebook app.

By default, Facebook app will automatically update itself. So, don't forget to disable this feature in the Facebook app options.

Hope that helps!

Sunday, July 25, 2010

WordPress: Add Facebook Like Button using functions.php

The Facebook Like button lets a user share contents with friends on Facebook. When the user clicks the Facebook Like button, a story appears in the user's friends' News Feed, with a link back to the original website.

[caption id="" align="alignnone" caption="Facebook Like Button"][/caption]

Append this code snippet to functions.php file in theme or child theme folder to add the Facebook Like Button.
function add_fb($content) {
$fb = ''; // display only on single page.
if (is_single()) {
$fb = '<iframe src="http://www.facebook.com/plugins/like.php?href=';
$fb .= urlencode(get_permalink(get_the_ID()));
$fb .= '&amp;layout=standard&amp;show_faces=false&amp;width=450&amp;';
$fb .= 'action=like&amp;colorscheme=light"';
$fb .= ' style="border:none; overflow:hidden; width:450px; ';
$fb .= 'height:60px"></iframe>';
}

// display before the content.
return $fb . $content;

// display after the content.
// return $content . $fb;
}

add_filter('the_content', 'add_fb');

Please visit http://developers.facebook.com/docs/reference/plugins/like for more information on how to customize the Like Button.