Unliking Impossible to remove Facebook Pages
I recently ran into a problem of being unable to remove a facebook page from my profile. The page linked to an off facebook website...containing no unlike button. Before I begin you might want to try something simpler such as:
http://xnotion.hubpages.com/hub/How-to-Leave-a-Fan-Page-on-Facebook
https://www.facebook.com/help/?faq=227905267225251
I will be doing this in chrome
Begin by browsing to edit your profile. Click on the Other Pages You Like.
Step #1 right click select inspect element
Step #2 Right click on the selected element -> edit as html
Copy the web address after <a href=” you will need this later
in this example it is
http://www.ustream.tv/channel/at-home-with-jono-bacon?ref=pb
Delete the text
everything between <A …... and </a>
Step #3 Insert the following text
<a ajaxify="/ajax/pages/fan_status.php?fbpage_id=XXXXXXXXXXXX&add=0&reload=1&preserve_tab=0&use_primer=1" href="#" rel="async-post" onclick="">Unlike</a>
Step #4 find the fbpage_id
You can find this by opening a new browser window to https://graph.facebook.com/user-name
Where the user-name is the URL of the site you are trying to remove. For example
The ID is "id": "163113980415454",
Step #5 insert the ID in place of XXXXXXXXXXXX in
<a ajaxify="/ajax/pages/fan_status.php?fbpage_id=XXXXXXXXXXXX&add=0&reload=1&preserve_tab=0&use_primer=1" href="#" rel="async-post" onclick="">Unlike</a>
so that It looks like
<a ajaxify="/ajax/pages/fan_status.php?fbpage_id=163113980415454&add=0&reload=1&preserve_tab=0&use_primer=1" href="#" rel="async-post" onclick="">Unlike</a>
Step #6 Click the page link that now says Unlike
P.S. The example used was not removed from my facebook page, since I actually like that link, but it was the only out of Facebook link left that I knew about :D
Comments
Post a Comment