I have a feed from my Twitter profile on the top of my site but I wondered if there is a way to filter out my @replies and only show my status updates?
Thanks
|
|
If you're using the standard Twitter feed web code for Blogger and similar sites, this bit of Javascript does the trick. It sits between the Twitter feed and the callback and strips replies out of the server response. For a blog badge, the standard Twitter web code ends with two Add this script to your badge code before the twitter query. It provides a new function called filterCallback which strips @replies from the Twitter response.
The twitter query itself has a parameter which specifies what function to call when the response comes back. In blogger's case, that function is called 'twitterCallback2' - you can search for it in the web code (look for Note that as this will reduce the number of displayed tweets if some of the repsonses from Twitter are replies, so you have to increase the count parameter in the call to allow for that. The new function then limits the number of displayed replies to five - edit the code to change that. Here's my blog post about it: Filter Replies out of Twitter Feed |
||||
|
Maybe with Yahoo Pipes. Tomalak has made a quick example for you. |
|||||||||||
|
|
If you want to use the new Twitter widgets, just add this piece of code within the
I took this one from Dustin Diaz's website at http://www.dustindiaz.com. Dustin Diaz is the creator of the Twitter widget. |
|||
|
|
|
Change the setUser call to
This is kind of a hack but it does the trick |
|||
|
|
|
Depends on what you're using to display the entries. If you're using Twitter's widget, then probably not. If you're using some other programmatic way of displaying the items, you'd need to provide more details about what you're doing (language, sample code, etc) and we can probably help with filtering. |
|||
|
|
|
You'll probably want to use a regular expression. Something along the lines of:
Depending on how you are formatting your twitter feed on your page. This regex assumes that you're formatted something like:
If it matches, don't display it. If it doesn't match, then display it. :) If you've got tags in there along with the text, adjust the regex appropriately. |
|||
|
|