I've recently been doing a series of how-to articles on Blogger Hacks -- cool tricks you can use to get Blogger to do spiffy new things. This week, I got to write a guest column about them all for Blogger Knowledge. Check it out: Hacking the Blogger Matrix.
Update: This is turning into a fairly popular article. It even showed up on BoingBoing. There was also a WebUser UK article about it, though I was rather disappointed in how they referred to it as hacking into Blogger, which sounds rather more evil than anything I intended. Anyway, it's fun to see people noticing and commenting on it.
Disclaimer: While I do appreciate all the comments and emails from people about this, I will probably not be able to respond to them all. Also, please note that I don't take requests for particular hacks, or for tech support. (If you have general Blogger/BlogSpot questions, please check out help.blogger.com, or write to Blogger Support.)
12 comments:
Hi,
I've actually been working on something almost identical. You may end up with the "suggestion" that I sent google, but I thought I'd post here just in case. I set up a test blog and am trying to build an imitation command line interface. I'm not terribly good, so, while it works, it doesn't work well. Let me know if you want the code. the site is at
http://sacrificezone.blogspot.com
Have fun.
Kit
Wonderful front page article. I will make a test blog tonight and test some stuff. You know, see if I want it in my main site.
Thanks Graham,
I am no Hacker but I do play around with the code in Blogger. If you check my blog you will see that I have added News Feeds and book lists and such.
Thanks again Grahama. I look forward to more tips.
David Godden of The Daily Blog
hey i've change my blog's look. my design is base on the FRIENDSTER because im a friendster fanatic. so what can u say about my blog? http://gwaping.blogspot.com thanks!
I have written a javascript hack to add 'On This Day' functionality to Blogger and have written a how-to here.
There are a couple of other sites using it already and they reported it was nice and easy to implement. I've submitted it to the link on your article too - but noticed people were using this thread to highlight stuff so me too! :)
I have made one little hacking on my blogger template, cause I wanted to show my Orkut profile link right below the Blogger profile inside the profile box. I am using the Douglas Bowman's "Rounders 2" template (http://www.blogger.com/templates/rounders2/sample.html)...
What I have done was a Javascript function that runs on onLoad body event and modifies the DOM inserting another link on the portion of HTML generated by the tag <$BlogMemberProfile$>. I have opted in using this approach instead of replace the <$BlogMemberProfile$> tag with the hardcoded html so I don't have to change the template again in case someday I would update my Blogger profile information, and to have some hacking fun, obviously... So, here's the code:
function modifyProfileBox(){
var profilecontainer = document.getElementById("profile-container");
profilecontainer.getElementsByTagName("p")[0].getElementsByTagName("a")[0].firstChild.nodeValue="View my Blogger profile";
var p = document.createElement("p");
var a = document.createElement("a");
a.setAttribute("href", "http://www.orkut.com/Profile.aspx?uid=16569348001216750613");
a.appendChild(document.createTextNode("View my Orkut profile"));
p.setAttribute("class","profile-link")
p.appendChild(a);
profilecontainer.appendChild(p);
}
This function actually changes the text "View my complete profile" to "View my Blogger profile", and append another profile link. I had the help of Mozilla DOM Inspector Tool to find the correct id =)
Graham,
Came to read your article from a link on Boing-Boing. While I wont call myself a hacker, I can really appreciate most of the stuff you have put up.
Great article. Will slowly implement some of the stuff you have talked about.
Cheers,
Dhar
Hey Graham... you away of any way to provide a link on a page to just the latest blog entry? I have my own main page with links to several blogs from it. I'd like to be able to use some sort of INCLUDE statement that would have the title and link to the most recent entry.
Thanks!
great article graham. i am definitley not a "hacker" more of a tweaker. however, i would love to find a way to add a favicon to my blogspot. any chance this is even possible? all the other cool kids have them, and darn it , i want one. actually, i have one all ready to go, just waiting for someone to show me the way. ;-)
Hey,
I totally 150% understand if you'd get irritated by this, I probably would to, after trying to generally help people out, its irritating to get tons of requests for further help, but I HAD to try!
Thanks for your tutorials on how to change what the comments say, but every time I put up my code with my user ID and change the Blogitemnumbers, it comes up with a page that says there was an error and i have to log in, in order to leave a comment.
I'm also trying to put both the "post a comment" and the "read comments" option on my main page below my entry, just like yours is. How did you get that to work? I can view it, but the link does the same thing.
If you take the time to reply to this, THANK YOU! If not, I totally understand, I apologize for bothering you.
Black - Nyx
These comments have been invaluable to me as is this whole site. I thank you for your comment.
Post a Comment