<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://72.14.177.54/skins/common/feed.css?207"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title>Bloggerhacks - User contributions [en]</title>
		<link>http://72.14.177.54/Bloggerhacks/Special:Contributions/Adityavm</link>
		<description>From Bloggerhacks</description>
		<language>en</language>
		<generator>MediaWiki 1.15.1</generator>
		<lastBuildDate>Mon, 15 Jun 2026 07:25:39 GMT</lastBuildDate>
		<item>
			<title>Request Hacks</title>
			<link>http://72.14.177.54/Bloggerhacks/Request_Hacks</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;/* Separe posts by Authors (or Labels) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TopMenu}}&lt;br /&gt;
[[Category:User Editable Pages]]&lt;br /&gt;
&lt;br /&gt;
Looking for a section that used to be here?  Solved hacks are moved to the [[Request Hacks/Solved|Solved Requests]] page, along with links to the solutions.  Feel free to move your own requests there when solved.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Do you want a particular feature for your blog? Are you pretty sure that it is possible? Add a new section to this page describing your requirements in detail and linking to examples, or to the site that you'd like to edit. I can't promise that your need will be met, but I hope to guarantee that it will be seen by people who can help.&lt;br /&gt;
&lt;br /&gt;
To help the community to understand what you're looking for, please include:&lt;br /&gt;
&lt;br /&gt;
# A full description of the feature that you're looking for.&lt;br /&gt;
# An explanation of the purpose.&lt;br /&gt;
# A link to your blog, or to any other resources / examples that you want to use.&lt;br /&gt;
&lt;br /&gt;
The more detail you are able to provide, the more likely it is that another user will be able to assist you.&lt;br /&gt;
&lt;br /&gt;
==New Requests==&lt;br /&gt;
&lt;br /&gt;
===Drop-down list for posts in alphabetical order for a specific label (or labels)===&lt;br /&gt;
April 15, 2007.&lt;br /&gt;
&lt;br /&gt;
I'm interested in a hack where I can add multiple drop-down lists (or menus) in a widget (or different widgets, doesn't matter) that will display only the post titles in alphabetical order for a label (or labels) that has been hard-coded/determined by me. Selecting the post title from the drop-down list will load the contents of that post. I'm using new blogger.&lt;br /&gt;
&lt;br /&gt;
To give you an idea, this hack here: http://hoctro.blogspot.com/2006/12/killer-hack-contents-by-category.html does the job but displays the posts in a flat-list, which is not useful to me. I'm specifically looking for a drop-down list. Also, I do not want to use any external tag/label website like del.ici.ous to accomplish this.&lt;br /&gt;
&lt;br /&gt;
My blog is at http://lotusnova.blogspot.com/&lt;br /&gt;
&lt;br /&gt;
Thanks.&lt;br /&gt;
&lt;br /&gt;
-Amit&lt;br /&gt;
&lt;br /&gt;
===Separe posts by Authors (or Labels)===&lt;br /&gt;
I am starting a blog with a friend and would like to separe the two authors into two different columns, that is, on the left column show the posts by a Author 1 and on the right by Author 2. If it helps, It could be a specific label on the left column and another on the right! I already have the CSS template for left / right columns, I just don't know what code loads posts that match this specific criteria..&lt;br /&gt;
&lt;br /&gt;
* This shouldn't be too hard. Just place two &amp;lt;script&amp;gt; tags in the two columns. One pointing to the feed of your label, one to that of the other's label. Append the same 'callback' to both of them, and when the page loads, the callbacks will be fired with the required data. The callbacks themselves can write out the posts contained in the feed :) Let me know if need help coding it out. Cheers! --[[User:Adityavm|Aditya]] 03:39, 12 May 2007 (EDT)&lt;br /&gt;
&lt;br /&gt;
===Clicking a Label will show limited post===&lt;br /&gt;
Presently, when we click on a label, say with 100 post, then blogger show all 100 post in a single page. Is there any hack through which we can limit it to say, Five with link to see next five and so on?&lt;br /&gt;
&lt;br /&gt;
===Cookies for peek-a-boo===&lt;br /&gt;
Remember the state of peek-a-boo comments in a cookie and maintain that state when the visitor next comes.  Doable, but probably take a bit.  Suggested at http://singpolyma-tech.blogspot.com/2006/10/comments-on-mainarchive-page-peek-boo.html#c116591239141648939&lt;br /&gt;
&lt;br /&gt;
===Hide Posts From Homepage And Archive Pages===&lt;br /&gt;
&lt;br /&gt;
I want to hide certain posts from the home page and the archive pages, but I still want to show the post on its own page. Eg:&lt;br /&gt;
&lt;br /&gt;
Hide Post: MYBLOG.blogspot.com/&lt;br /&gt;
&lt;br /&gt;
Hide Post: MYBLOG.blogspot.com/2007_01_01_archive.html&lt;br /&gt;
&lt;br /&gt;
Show Post: MYBLOG.blogspot.com/2007/01/POSTNAME.html&lt;br /&gt;
&lt;br /&gt;
Also, I'd like to hide these certain posts from the RSS/Atom feed.&lt;br /&gt;
&lt;br /&gt;
I don't know very much about how Blogger's special template markup works, but I saw some stuff that looks like it is possible to do if/then logic.&lt;br /&gt;
&lt;br /&gt;
Maybe have if/then logic saying&lt;br /&gt;
&lt;br /&gt;
    if on home page&lt;br /&gt;
        if post has label [name of hidden label]&lt;br /&gt;
            then don't show post&lt;br /&gt;
&lt;br /&gt;
I think that may be possible but I'm not sure just how.&lt;br /&gt;
&lt;br /&gt;
* This could turn rather ugly, especially if you want to use Blogger's native language. You'll have to put whole chunks within [b:if] tags, which will become hard to debug later on. I suggest a more direct, Javascript-ed approach, which will check the 'labels' container for a matching string, and hide the whole post if TRUE. Does that sound better? --[[User:Adityavm|Aditya]] 09:11, 19 March 2007 (EST)&lt;br /&gt;
&lt;br /&gt;
===Hide sidebar previous posts on some recent posts===&lt;br /&gt;
'''Description:'''&lt;br /&gt;
As I use the Blogger navigation in my sidebar myself a lot, so I have added the 'previous' Blogger template code to the main archive and both a 'previous' and 'recent'(using Social bookmarks javascript linkroll) section to item pages sidebars so I'm sure I can access all my posts easily.&lt;br /&gt;
&lt;br /&gt;
'''Problem:'''&lt;br /&gt;
This works fine on old posts but on the first newer posts (item pages) they both show nearly the same links, so I would like to hide the 'recent' sidebar block, on say, the the first 3 new posts.&lt;br /&gt;
&lt;br /&gt;
'''Link:''' &lt;br /&gt;
The [http://3spots.blogspot.com/ blog in question].   &lt;br /&gt;
&lt;br /&gt;
Any idea how I could do that? &lt;br /&gt;
&lt;br /&gt;
Thanks, it's a great idea this wiki!  [[User:Ycc2106|Ycc2106]] 07:04, 24 July 2006 (EDT)&lt;br /&gt;
&lt;br /&gt;
===Merge blogs===&lt;br /&gt;
Basically, I have 6 personal blogs on my Blogger dashboard. That's because I wanted categorization before Blogger Beta introduced labels. For a number of reasons, I want to merge my blogs into one. If there is a way to import all the posts from one blog into another, that would be an ideal solution. Please advise or create a hack to do this, thanks in advance. My blog is here at [http://www.shan.ca.tf www.Shan.ca.tf]&lt;br /&gt;
&lt;br /&gt;
===Blogsend: No Linkback to Main Blog===&lt;br /&gt;
I have a [http://usurpingivy.blogspot.com Blogger Blog] that I've been updating since the Dawn of time, but my friends are all on LiveJournal.  Using the Blogsend function, I'm able to update the [http://usurpingivylj.livejournal.com LiveJournal] without actually ever stepping foot on LJ, BUT the issue becomes that BlogSend automatically adds a footer with a linkback to the main Blog.  I need to figure out a way to circumvent that, for privacy reasons on my main blog and to protect my guestbloggers.  Any ideas?  Thanks!!&lt;br /&gt;
&lt;br /&gt;
===Tag Hack for Qumana ===&lt;br /&gt;
I want to use Qumana for my post editing for Blogger. It works much better with Blogger than Performancing. But I want to change the tagging option from Technocratii to RawSugar (as exists with the great BlogThis/Tag hack.)&lt;br /&gt;
&lt;br /&gt;
My guess it's a simple business of changing the urlsoemnwhere in the Qunama script. Where? How?&lt;br /&gt;
&lt;br /&gt;
===Way to Add The Digg Button To a Beta Blogger Blog Hack===&lt;br /&gt;
This [http://diggbutton.blogspot.com/ tutorial] for the digg button for a blogger blog doesn't work in the new beta blogger. I would appreciate it if someone made a digg button code for the new beta blogger. If you'd liek to know what kind of template I use, if that will help you, check [http://allaboutadsense.blogspot.com/ All About Google Adsense].Thank You in advance.&lt;br /&gt;
&lt;br /&gt;
===Chronological order of posts (Blogger/Blogspot)===&lt;br /&gt;
&lt;br /&gt;
Hello together,&lt;br /&gt;
&lt;br /&gt;
first off i'd like thank everybody who has put his/her effort into this wiki in order to have a platform for hacks and new ideas...&lt;br /&gt;
&lt;br /&gt;
Ever since i started blogging i wanted to have the possibility to reverse the order in which the posts appear on my blog's mainpage. And please don't get me wrong, I'm well aware of the very nature of a blog and therefore having all the new stuff on top. &lt;br /&gt;
&lt;br /&gt;
BUT: I'm running a team blog with a handful of friends and we're often posting stories in sequence or referencing things that one of our members was writing in the past...&lt;br /&gt;
&lt;br /&gt;
So the problem is, when one hasn't checked in to read the latest stories for quite a while, he looses the context and must read the older posts first to understand the current ones.&lt;br /&gt;
&lt;br /&gt;
Before we migrated to the new version of Blogger we had a solution based on this hack: [http://www.inventric.com/blog/2004/12/change-order-of-blogger-posts.html]&lt;br /&gt;
&lt;br /&gt;
A quick look into the new widget-model and XML-stuff of the new Blogger system revealed the total incompatibility of this hack.&lt;br /&gt;
&lt;br /&gt;
'''So the question is, does anybody know how to realise this along with the new Blogger or at least know how the looping of the posts inside that post widget works?'''&lt;br /&gt;
&lt;br /&gt;
==Discussed Requests==&lt;br /&gt;
&lt;br /&gt;
===Comments on archive pages (Blogger/Blogspot)===&lt;br /&gt;
Hello together,&lt;br /&gt;
&lt;br /&gt;
Is there a way to sort comments on archive pages with the newest one on top?&lt;br /&gt;
* Please see [http://www.bloggerforum.com/modules/newbb/viewtopic.php?topic_id=12550&lt;/div&gt;</description>
			<pubDate>Sat, 12 May 2007 07:39:10 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Request_Hacks</comments>		</item>
		<item>
			<title>Request Hacks</title>
			<link>http://72.14.177.54/Bloggerhacks/Request_Hacks</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;/* Hide Posts From Homepage And Archive Pages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TopMenu}}&lt;br /&gt;
[[Category:User Editable Pages]]&lt;br /&gt;
&lt;br /&gt;
Looking for a section that used to be here?  Solved hacks are moved to the [[Request Hacks/Solved|Solved Requests]] page, along with links to the solutions.  Feel free to move your own requests there when solved.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Do you want a particular feature for your blog? Are you pretty sure that it is possible? Add a new section to this page describing your requirements in detail and linking to examples, or to the site that you'd like to edit. I can't promise that your need will be met, but I hope to guarantee that it will be seen by people who can help.&lt;br /&gt;
&lt;br /&gt;
To help the community to understand what you're looking for, please include:&lt;br /&gt;
&lt;br /&gt;
# A full description of the feature that you're looking for.&lt;br /&gt;
# An explanation of the purpose.&lt;br /&gt;
# A link to your blog, or to any other resources / examples that you want to use.&lt;br /&gt;
&lt;br /&gt;
The more detail you are able to provide, the more likely it is that another user will be able to assist you.&lt;br /&gt;
&lt;br /&gt;
==New Requests==&lt;br /&gt;
&lt;br /&gt;
===Clicking a Label will show limited post===&lt;br /&gt;
Presently, when we click on a label, say with 100 post, then blogger show all 100 post in a single page. Is there any hack through which we can limit it to say, Five with link to see next five and so on?&lt;br /&gt;
&lt;br /&gt;
===Cookies for peek-a-boo===&lt;br /&gt;
Remember the state of peek-a-boo comments in a cookie and maintain that state when the visitor next comes.  Doable, but probably take a bit.  Suggested at http://singpolyma-tech.blogspot.com/2006/10/comments-on-mainarchive-page-peek-boo.html#c116591239141648939&lt;br /&gt;
&lt;br /&gt;
===Hide Posts From Homepage And Archive Pages===&lt;br /&gt;
&lt;br /&gt;
I want to hide certain posts from the home page and the archive pages, but I still want to show the post on its own page. Eg:&lt;br /&gt;
&lt;br /&gt;
Hide Post: MYBLOG.blogspot.com/&lt;br /&gt;
&lt;br /&gt;
Hide Post: MYBLOG.blogspot.com/2007_01_01_archive.html&lt;br /&gt;
&lt;br /&gt;
Show Post: MYBLOG.blogspot.com/2007/01/POSTNAME.html&lt;br /&gt;
&lt;br /&gt;
Also, I'd like to hide these certain posts from the RSS/Atom feed.&lt;br /&gt;
&lt;br /&gt;
I don't know very much about how Blogger's special template markup works, but I saw some stuff that looks like it is possible to do if/then logic.&lt;br /&gt;
&lt;br /&gt;
Maybe have if/then logic saying&lt;br /&gt;
&lt;br /&gt;
    if on home page&lt;br /&gt;
        if post has label [name of hidden label]&lt;br /&gt;
            then don't show post&lt;br /&gt;
&lt;br /&gt;
I think that may be possible but I'm not sure just how.&lt;br /&gt;
&lt;br /&gt;
* This could turn rather ugly, especially if you want to use Blogger's native language. You'll have to put whole chunks within [b:if] tags, which will become hard to debug later on. I suggest a more direct, Javascript-ed approach, which will check the 'labels' container for a matching string, and hide the whole post if TRUE. Does that sound better? --[[User:Adityavm|Aditya]] 09:11, 19 March 2007 (EST)&lt;br /&gt;
&lt;br /&gt;
===Hide sidebar previous posts on some recent posts===&lt;br /&gt;
'''Description:'''&lt;br /&gt;
As I use the Blogger navigation in my sidebar myself a lot, so I have added the 'previous' Blogger template code to the main archive and both a 'previous' and 'recent'(using Social bookmarks javascript linkroll) section to item pages sidebars so I'm sure I can access all my posts easily.&lt;br /&gt;
&lt;br /&gt;
'''Problem:'''&lt;br /&gt;
This works fine on old posts but on the first newer posts (item pages) they both show nearly the same links, so I would like to hide the 'recent' sidebar block, on say, the the first 3 new posts.&lt;br /&gt;
&lt;br /&gt;
'''Link:''' &lt;br /&gt;
The [http://3spots.blogspot.com/ blog in question].   &lt;br /&gt;
&lt;br /&gt;
Any idea how I could do that? &lt;br /&gt;
&lt;br /&gt;
Thanks, it's a great idea this wiki!  [[User:Ycc2106|Ycc2106]] 07:04, 24 July 2006 (EDT)&lt;br /&gt;
&lt;br /&gt;
===Merge blogs===&lt;br /&gt;
Basically, I have 6 personal blogs on my Blogger dashboard. That's because I wanted categorization before Blogger Beta introduced labels. For a number of reasons, I want to merge my blogs into one. If there is a way to import all the posts from one blog into another, that would be an ideal solution. Please advise or create a hack to do this, thanks in advance. My blog is here at [http://www.shan.ca.tf www.Shan.ca.tf]&lt;br /&gt;
&lt;br /&gt;
===Blogsend: No Linkback to Main Blog===&lt;br /&gt;
I have a [http://usurpingivy.blogspot.com Blogger Blog] that I've been updating since the Dawn of time, but my friends are all on LiveJournal.  Using the Blogsend function, I'm able to update the [http://usurpingivylj.livejournal.com LiveJournal] without actually ever stepping foot on LJ, BUT the issue becomes that BlogSend automatically adds a footer with a linkback to the main Blog.  I need to figure out a way to circumvent that, for privacy reasons on my main blog and to protect my guestbloggers.  Any ideas?  Thanks!!&lt;br /&gt;
&lt;br /&gt;
===Tag Hack for Qumana ===&lt;br /&gt;
I want to use Qumana for my post editing for Blogger. It works much better with Blogger than Performancing. But I want to change the tagging option from Technocratii to RawSugar (as exists with the great BlogThis/Tag hack.)&lt;br /&gt;
&lt;br /&gt;
My guess it's a simple business of changing the urlsoemnwhere in the Qunama script. Where? How?&lt;br /&gt;
&lt;br /&gt;
===Way to Add The Digg Button To a Beta Blogger Blog Hack===&lt;br /&gt;
This [http://diggbutton.blogspot.com/ tutorial] for the digg button for a blogger blog doesn't work in the new beta blogger. I would appreciate it if someone made a digg button code for the new beta blogger. If you'd liek to know what kind of template I use, if that will help you, check [http://allaboutadsense.blogspot.com/ All About Google Adsense].Thank You in advance.&lt;br /&gt;
&lt;br /&gt;
===Chronological order of posts (Blogger/Blogspot)===&lt;br /&gt;
&lt;br /&gt;
Hello together,&lt;br /&gt;
&lt;br /&gt;
first off i'd like thank everybody who has put his/her effort into this wiki in order to have a platform for hacks and new ideas...&lt;br /&gt;
&lt;br /&gt;
Ever since i started blogging i wanted to have the possibility to reverse the order in which the posts appear on my blog's mainpage. And please don't get me wrong, I'm well aware of the very nature of a blog and therefore having all the new stuff on top. &lt;br /&gt;
&lt;br /&gt;
BUT: I'm running a team blog with a handful of friends and we're often posting stories in sequence or referencing things that one of our members was writing in the past...&lt;br /&gt;
&lt;br /&gt;
So the problem is, when one hasn't checked in to read the latest stories for quite a while, he looses the context and must read the older posts first to understand the current ones.&lt;br /&gt;
&lt;br /&gt;
Before we migrated to the new version of Blogger we had a solution based on this hack: [http://www.inventric.com/blog/2004/12/change-order-of-blogger-posts.html]&lt;br /&gt;
&lt;br /&gt;
A quick look into the new widget-model and XML-stuff of the new Blogger system revealed the total incompatibility of this hack.&lt;br /&gt;
&lt;br /&gt;
'''So the question is, does anybody know how to realise this along with the new Blogger or at least know how the looping of the posts inside that post widget works?'''&lt;br /&gt;
&lt;br /&gt;
==Discussed Requests==&lt;br /&gt;
&lt;br /&gt;
===Comments on archive pages (Blogger/Blogspot)===&lt;br /&gt;
Hello together,&lt;br /&gt;
&lt;br /&gt;
Is there a way to sort comments on archive pages with the newest one on top?&lt;br /&gt;
* Please see [http://www.bloggerforum.com/modules/newbb/viewtopic.php?topic_id=12550&amp;amp;forum=6&amp;amp;post_id=50795]&lt;br /&gt;
&lt;br /&gt;
=== Previous posts to increase number of backlinks ===&lt;br /&gt;
Hi bloggers,do you know the thing that your blogs show only 10 previous posts? Can anyone help me to increase the number of previous posts,say to 50.I want blogger to show atleast 50 previous posts on my pages.I tried some feed hacks but they show only recent posts thus no backlinks for older posts.Suggest me a hack or a simple manupulation such that i can get atleast 20 or 30 backlinks to my all posts.&lt;br /&gt;
* This module does not seem to really exist any more.  I may be wrong, but I think this only even exists on Blogger Classic.  The new hierarchical blogger archives really do a good job of mixing this kind of thing with archives :)&lt;br /&gt;
&lt;br /&gt;
===Inversed and Subdivided Comments Section Hack for New Blogger Templates===&lt;br /&gt;
&lt;br /&gt;
- Requested Hack posted on Saturday, January 27, 2007 by [http://technofocus.blogspot.com/2007/01/inversed-and-subdivided-comments.html Alain] &lt;br /&gt;
&lt;br /&gt;
'''Comments Section modifications'''&lt;br /&gt;
&lt;br /&gt;
Interactivity with readers through a specific Comments Section opened to Blogger and Non-Blogger members is one distinguishing characteristic that seduces me about New Blogger.  I’m a new comer into the blogosphere and I’m not totally satisfied with my actual New Blogger Comments Section. I would like to modify the Comments Section of my New Blogger Minima Stretch Template with one column in such a way that it would reflect more my ideal desired Comments Section. My ideal Comments Section Hack would eventually display the following major features:&lt;br /&gt;
&lt;br /&gt;
'''Major features of my Ideal Inversed and Subdivided Comments Section Hack''' &lt;br /&gt;
&lt;br /&gt;
* 1. Comments Section displayed at the bottom of the Post Page from the newest comments to the oldest instead of the oldest to the newest;&lt;br /&gt;
&lt;br /&gt;
* 2. Maintenance of all the default functionalities of the New Blogger Comments Section (like the Post a Comment link and the accessibility to the commenter profile by clicking on his name for examples);&lt;br /&gt;
&lt;br /&gt;
* 3. Comments Section displayed in subsections of ten comments at a time at the bottom of the related Post (I’m not sure yet if subsections of  5 comments rather then 10 would be best for my needs since I anticipate that some comments of my potential readers might be relatively long) ;&lt;br /&gt;
&lt;br /&gt;
* 4. Navigation elements at the top and the bottom of the Comments Section to easily access the other subsections of comments;&lt;br /&gt;
&lt;br /&gt;
* 5. Possibility and flexibility to set up the new informational text related to the navigation elements of the Comments Sections into different languages (particularly French);&lt;br /&gt;
&lt;br /&gt;
* 6. Optimal loading performance of the Comments Section and Subsections;&lt;br /&gt;
&lt;br /&gt;
* 7. Compatibility with the New Blogger Templates (particularly Minima Stretch);&lt;br /&gt;
&lt;br /&gt;
* 8. Compatibility with the hacks presented in the Blogger Hacks Wikipedia (particularly  expandable peek-a-boo, peek-a-boo widgets, peak-a-boo label and archive on the main page, author’s comment highlighting, recent comments and recent posts widgets, hiding NavBar, Top of Page/Top of Post Navigation elements );&lt;br /&gt;
&lt;br /&gt;
* 9.Compatibility with the latest and most used versions of the major browsers (especially IE and Firefox).&lt;br /&gt;
&lt;br /&gt;
* 10. Clear installation instructions breaked down into detailed steps. Explicit stipulation of the performance tests that the created hack has been submitted to accompanied with the known positive and negative results of these tests. Long term support availability in order to be able to cope with future Blogger or Browser upgrades for examples.&lt;br /&gt;
&lt;br /&gt;
'''Examples'''&lt;br /&gt;
&lt;br /&gt;
''For concrete prototypes or similar examples of what my Ideal Inversed and Subdivided Comments Section Hack request is about, please see the Comments Section of the following sites:'' &lt;br /&gt;
&lt;br /&gt;
* [http://hackosphere.blogspot.com/2006/12/now-available-neo-template.html Hakosphere ]&lt;br /&gt;
&lt;br /&gt;
* [http://www.dynamicdrive.com/style/csslibrary/item/suckertree-menu-horizontal/ Dynamique Drive (Sudivided Comments Section example only)]&lt;br /&gt;
&lt;br /&gt;
* [http://www.gortbusters.org/?q=node/2191#comment Gortbusters (Comments Viewing Options feature)] ( I don't want this specific feature in my requested hack but I think it's cool if someone want to test various possiblities for viewing comments in just one place)&lt;br /&gt;
&lt;br /&gt;
'''Openness and Flexibility'''&lt;br /&gt;
&lt;br /&gt;
I’m not a programmer and I have formulated my request with the best of my own limited knowledge about the potentials and the limits of New Blogger Templates.  Considering this fact, I just want to specify two things. First, I’m open to any adjustments that my Inversed and Subdivided Comments Section request may require in order to match with the potentials and limits of the New Blogger Templates.  Second, since I  have already witnessed that some of the members of the New Blogger hackers community are not just programming masters but also creative and original innovator, I’m open as well to any new feature(s) for my Inversed and Subdivided Comments Section request that I didn’t think of and that would improve it in one way or another. Just one wish! KISS! Keep It Simple and Smart.&lt;br /&gt;
&lt;br /&gt;
'''To the interested'''&lt;br /&gt;
&lt;br /&gt;
Is there a New Blogger hacker ready to try the challenge to satisfy my explicit request and maybe other New Blogger members latent desires as well for free? If you are interested in this challenge, please let me know at [http://technofocus.blogspot.com/2007/01/inversed-and-subdivided-comments.html Techno Focus].&lt;br /&gt;
&lt;br /&gt;
Everybody is invinted to comment this particular hack at the end of this request or at [http://technofocus.blogspot.com/2007/01/inversed-and-subdivided-comments.html Techno Focus].&lt;br /&gt;
&lt;br /&gt;
If you need more information about this Inversed and Subdivided Comments Section Hack request, please feel at ease to ask me at [http://technofocus.blogspot.com/2007/01/inversed-and-subdivided-comments.html Techno Focus].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Salutations! from Québec, Canada.&lt;br /&gt;
&lt;br /&gt;
[http://technofocus.blogspot.com/2007/01/inversed-and-subdivided-comments.html Alain]&lt;br /&gt;
&lt;br /&gt;
====Comments on ''Inversed and Subdivided Comments Section Hack''==== &lt;br /&gt;
 '''This is a manual Inversed Comments Section:''' Please copy and paste the heading below &lt;br /&gt;
 in the edit background and put it over your own comment for the next commentator.&lt;br /&gt;
 Thanks!&lt;br /&gt;
* On (''The date''), [''Your Name''] said...&lt;br /&gt;
&lt;br /&gt;
(''Your comment here Please'')&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* On March 7, [http://technofocus.blogspot.com/2007/01/inversed-and-subdivided-comments.html Alain] said...&lt;br /&gt;
&lt;br /&gt;
'''Conversations tracking services consideration:''' Hoctro, I don’t know if you have noticed but Ramani’s neo comments section (Hackosphere) doesn’t allow anymore conversations tracking services like Co.mments.  From my point of view it’s a big disadvantage of his neo template. I also tend to believe that the possibility to use a conversation tracking service will be an important consideration for many bloggers that will be tempted by implementing any kind of hack on their comments section.  Regards!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* On Febuary 8, [http://technofocus.blogspot.com/2007/01/inversed-and-subdivided-comments.html Alain] said...&lt;br /&gt;
&lt;br /&gt;
'''Commenting is going to be Hoctro next set of hacks:''' Hoctro from [http://hoctro.blogspot.com/2006/12/what-should-i-write-about.html Hoctro's Place] has expressed the willingness to give a shot at new hacks in relation to the Comments Section. &lt;br /&gt;
&lt;br /&gt;
“''4lain,''&lt;br /&gt;
''By coincident, commenting is going to be my next set of hacks. I think what you said is doable. Seeing the NEO template from Ramani without looking at his code, I think he uses JSON to get the data back, then display them &amp;amp; other pagination stuff. I'm going to try that on my own too.''&lt;br /&gt;
&lt;br /&gt;
''Cheers,''”&lt;br /&gt;
&lt;br /&gt;
Wow! That's cool.  I can't wait to witness his technical and creative skills at work.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* On January 30, [http://technofocus.blogspot.com/2007/01/inversed-and-subdivided-comments.html Alain] said...&lt;br /&gt;
&lt;br /&gt;
'''Neo-like Comments:''' Ramani from [http://hackosphere.blogspot.com/2006/12/now-available-neo-template.html Hackosphere] has expressed a position regarding my hack request on his blog. &lt;br /&gt;
&lt;br /&gt;
“''On January 28, Ramani said... Alain, That's a pretty detailed hack request from you. Due to lack of time, I don't think I can make Neo-like comments for other templates. Also, there are so many templates out there. But, other hackers can give it a shot.''”&lt;br /&gt;
&lt;br /&gt;
Disappointed? Yes! But I really appreciate that he took the time to clarify his position regarding my hack request despite that he’s presently going through a busy period at his work.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''''End of the Comments on Inversed and Subdivided Comments Section Hack'''''&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Specify the Number of Labels Displayed===&lt;br /&gt;
I recently switched to Blogger Beta and have edited all my posts to remove technorati tags and add labels.  This, however, generated a very long list of labels in my sidebar.  I would like to be able to specify how many labels I want displayed, such as the top ten for instance.&lt;br /&gt;
&lt;br /&gt;
I have looked at Hackosphere, phydeaux3, and Hoctor's Place.  All of the code there, however, does a lot more than I need.  So I was hoping there would be a simpler hack for this.&lt;br /&gt;
&lt;br /&gt;
My blog is located at http://mentisworks.blogspot.com, and thank you very much in advance!&lt;br /&gt;
&lt;br /&gt;
* The inbuilt Labels widget in Blogger has an option to limit the number of labels being displayed. Is that what you're looking for? --[[User:Adityavm|Aditya]] 04:04, 17 January 2007 (EST)&lt;br /&gt;
&lt;br /&gt;
===Archives: drop-down menu with titles===&lt;br /&gt;
I can't find a way to make the blogger(beta) drop-down menu show titles of the post, instead of the date. I think it'd be extremely helpful, especially for blogs which are not updated very often.&lt;br /&gt;
&lt;br /&gt;
Or maybe do you have an idea how to make this a stand-alone widget? Probably using the site's feed?&lt;br /&gt;
&lt;br /&gt;
* Are you looking for something like the archives display [http://hackinggrounds.blogspot.com here]? --[[User:Adityavm|Aditya]] 04:08, 17 January 2007 (EST)&lt;br /&gt;
&lt;br /&gt;
===Have The Last Word===&lt;br /&gt;
As a blogger, I welcome a large number of comments on my controversial posts. Being opinionated, I like to have the last word too. While I monitor discussions, keeping track of whether or not each post is &amp;quot;open&amp;quot; (ie I haven't had the final say) is difficult. &lt;br /&gt;
&lt;br /&gt;
I'd like a tool that will provide me with a list of my posts that have comments where the last one wasn't written by me, along with the contents of the last comment and a link to the appropriate comment editing page for that post.&lt;br /&gt;
&lt;br /&gt;
I imagine I could go to a page, enter a URL and my blogger name, then click a button. The results page would consist of a list of links and comments. Dates might be nice too. It wouldn't need to be integrated into my blog, be very stylish or even reliable, since it's just a tool I could check periodically when feeling bored.&lt;br /&gt;
&lt;br /&gt;
It might have an option to show only posts where I have commented but I am ''not'' the last commenter. This would be handy for blogs that I don't own, but comment on frequently.&lt;br /&gt;
&lt;br /&gt;
The building blocks for such a solution might include:&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;My comments blog&amp;quot; (HTML) via [[Comment Feed Using Another Blog]]&lt;br /&gt;
* &amp;quot;My comments feed&amp;quot; (RSS) via above&lt;br /&gt;
* [http://www.ts0.com/bloggercomments/ Thom's] [[Comment Feed using remote parser]]&lt;br /&gt;
* [http://www.anniyalogam.com/scripts/browser.php Ramani's] [[Archive Browser]]&lt;br /&gt;
* [http://anniyalogam.com/blog/2006/06/29/one-click-notification/ Ramani's] [[One-click Notification]]&lt;br /&gt;
&lt;br /&gt;
Any takers?&lt;br /&gt;
&lt;br /&gt;
-Greg.&lt;br /&gt;
&lt;br /&gt;
* Aren't we talking something like [http://cocomment.com coComment] or [http://co.mments.com co.mments], etc? -- [[User:Singpolyma|Singpolyma]] 09:21, 7 November 2006 (EST)&lt;br /&gt;
&lt;br /&gt;
===Want to have differnt pages for main page and post pages===&lt;br /&gt;
Am using blogger classic right now. I want to have a diffent page for the main page of my blog and some other page for the inner pages ( the post pages of my blog). &lt;br /&gt;
Actually i dont want to display any adsense ad on the main page. I want ads to appear when some one reads my post page or archive page.&lt;br /&gt;
&lt;br /&gt;
Example: Digital Inspiratiaon[http://labnol.blogspot.com]&lt;br /&gt;
In this blog there are no ads in the main page. But when you click the post tile,the post opens and there are ads in the post.&lt;br /&gt;
&lt;br /&gt;
Please help me.&lt;br /&gt;
My blog is Technical Bliss[http://technicalbliss.blogspot.com]&lt;br /&gt;
I must remind you again that am using the old blogger.&lt;br /&gt;
If someone can help me, just leave a msg on my blog. I will be highly thankful.&lt;br /&gt;
&lt;br /&gt;
* This has been done (not sure if it's in a way that works for the old Blogger, but I'll check).  I'll try to find it for you.  Please realise, however, that if I cannot find it you are not likely to find someone willing to create hacks for the old Blogger -- we've all moved ;)&lt;br /&gt;
&lt;br /&gt;
===fixed blog index page (kind of a blog home page)  ===&lt;br /&gt;
'''Description:'''&lt;br /&gt;
i'm trying to make a blog for my phd research and i want to make it like a webpage but with the perks of the blogger. so i'd like to have a fixed intro page with a description of my research and then use the labels to divide the blog into relevant areas similar to a webpage. right now i've added the tab label hack from hackosphere. &lt;br /&gt;
&lt;br /&gt;
'''Problem:'''&lt;br /&gt;
i just need a simple way to have one post permanently displayed when someone loads the blog and then they can click on the labels/tabs to see the rest of the blog like a webpage. &lt;br /&gt;
&lt;br /&gt;
'''Link:''' &lt;br /&gt;
The [http://mmwiseresearch.blogspot.com/ blog in question].   &lt;br /&gt;
&lt;br /&gt;
thanks&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Solution'''&lt;br /&gt;
&lt;br /&gt;
at least a possible solution.... Check out [http://blogfresh.blogspot.com/2006/08/expand-collapse-categories-with.html Caramuel's category hack]. This hack allows you to categorise your content, but also allows you to force the display of a given category when your main page loads.... So, put your intro / sticky post in its own category, then force that category to load as the default....&lt;br /&gt;
&lt;br /&gt;
===Hide the labels field from the main page and post pages===&lt;br /&gt;
Labels are nice and all, but they take too much space off the main page and post pages. I still want to label my posts, but I don't want to display them after each post...&lt;br /&gt;
&lt;br /&gt;
'''Solution'''&lt;br /&gt;
&lt;br /&gt;
A possible solution courtesy of [http://basangpanaginip.blogspot.com/2006/09/how-to-fix-comment-count-grammar-in.html Michael] and [http://hoctro.blogspot.com/2006/09/tweaking-new-blogger-feeds-on-front.html Hoctro], both of whom have played with Blogger Beta's new &amp;quot;if / then&amp;quot; logic to create the conditional display of content on certain kinds of page. I'd recommend that you leave your labels on your post pages, so that readers can see how you've categorised a post, &amp;amp; follow the link to a category that they're interested in,... but hey, it's your blog! This will probably work w/ minimal customisation.&lt;br /&gt;
&lt;br /&gt;
===Want Visitors List at bottom of each post, in Blogger Beta===&lt;br /&gt;
I'd like to have a list, at the end of each post, that gives the name of all the people who left a comment, and links that name to the website URL they left in the comment form.  You can see what I mean here: http://wystful1.blogspot.com/&lt;br /&gt;
At the end of each post is a 'Visitors List'.&lt;br /&gt;
&lt;br /&gt;
Can someone tell me how to implement this for Blogger Beta?  Thanks.&lt;br /&gt;
&lt;br /&gt;
http://caylynn.blogspot.com&lt;br /&gt;
&lt;br /&gt;
* Commentor names / links to their comments would be entirely possible modding [http://singpolyma-tech.blogspot.com/2006/10/comments-on-mainarchive-page-peek-boo.html my peek-a-boo hack], commentor URL would require hugely more scraping (and may not be possible at all).  If anyone finds a way please let me know, though, it would be nice in my hack! - [[User:Singpolyma|Singpolyma]] 09:39, 7 November 2006 (EST)&lt;br /&gt;
&lt;br /&gt;
==[[Request Hacks/Solved|Solved Requests]]==&lt;/div&gt;</description>
			<pubDate>Mon, 19 Mar 2007 14:11:48 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Request_Hacks</comments>		</item>
		<item>
			<title>Search blog from within Firefox</title>
			<link>http://72.14.177.54/Bloggerhacks/Search_blog_from_within_Firefox</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Platform==&lt;br /&gt;
Firefox 2.0+&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
Aditya Vikram Mukherjee&lt;br /&gt;
&lt;br /&gt;
==Homepage==&lt;br /&gt;
[http://lastword.blogspot.com/2007/03/search-your-blog-from-firefox.html Search your blog from Firefox]&lt;br /&gt;
&lt;br /&gt;
==License==&lt;br /&gt;
[http://creativecommons.org/licenses/by-nc-nd/2.5/ Creative Commons]&lt;br /&gt;
&lt;br /&gt;
==Required Skills==&lt;br /&gt;
Should be able to paste a line, and know the basic details (name, URL) of their blog, and have an icon to use (not compulsary).&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Adds a discovery for your blog to the search box in Firefox. Anyone else can then select and add it to their search box in case they'd like quick access to the search on your blog.&lt;br /&gt;
&lt;br /&gt;
==Method==&lt;br /&gt;
Paste one line of code, and change the required variables. Instructions on [http://lastword.blogspot.com/2007/03/search-your-blog-from-firefox.html home page]&lt;br /&gt;
&lt;br /&gt;
==Sites Using This Hack==&lt;br /&gt;
* [http://aditya-mukherjee.com The Last Word]&lt;br /&gt;
&lt;br /&gt;
==See Also:==&lt;br /&gt;
* [[Native Blog Search]]&lt;br /&gt;
* [[Native Search Suggest]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Firefox]]&lt;br /&gt;
[[Category:Search]]&lt;br /&gt;
[[Category:Hack]]&lt;/div&gt;</description>
			<pubDate>Mon, 19 Mar 2007 13:46:02 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Search_blog_from_within_Firefox</comments>		</item>
		<item>
			<title>Native Search Suggest</title>
			<link>http://72.14.177.54/Bloggerhacks/Native_Search_Suggest</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Version==&lt;br /&gt;
2.0&lt;br /&gt;
&lt;br /&gt;
==Platform==&lt;br /&gt;
New Blogger, Blogger Classic, Everything else&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
Aditya Vikram Mukherjee&lt;br /&gt;
&lt;br /&gt;
==Homepage==&lt;br /&gt;
[http://lastword.blogspot.com/2007/03/you-wanted-suggest-you-got-suggest.html You wanted suggest? You got suggest!]&lt;br /&gt;
&lt;br /&gt;
==License==&lt;br /&gt;
[http://creativecommons.org/licenses/by-nc-nd/2.5/ Creative Commons]&lt;br /&gt;
&lt;br /&gt;
==Required Skills==&lt;br /&gt;
Enough knowledge of Javascript to figure out basic functions, and modify them to make this compatible with other hacks.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Adds suggestions to existing search boxes based on previously made searches on the blog/site.&lt;br /&gt;
&lt;br /&gt;
==Method==&lt;br /&gt;
Follow the instructions on the [http://lastword.blogspot.com/2007/03/you-wanted-suggest-you-got-suggest.html home page].&lt;br /&gt;
&lt;br /&gt;
==Sites Using This Hack==&lt;br /&gt;
* [http://www.aditya-mukherjee.com The Last Word]&lt;br /&gt;
&lt;br /&gt;
==See Also:==&lt;br /&gt;
[[Native Blog Search]]&lt;br /&gt;
&lt;br /&gt;
[[Category:New Blogger]]&lt;br /&gt;
[[Category:Blogger Classic]]&lt;br /&gt;
[[Category:Hacks]]&lt;br /&gt;
[[Category:Suggestions]]&lt;br /&gt;
[[Category:Search]]&lt;/div&gt;</description>
			<pubDate>Sun, 11 Mar 2007 07:23:41 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Native_Search_Suggest</comments>		</item>
		<item>
			<title>Native Search Suggest</title>
			<link>http://72.14.177.54/Bloggerhacks/Native_Search_Suggest</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Version==&lt;br /&gt;
2.0&lt;br /&gt;
&lt;br /&gt;
==Platform==&lt;br /&gt;
New Blogger, Blogger Classic, Everything else&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
Aditya Vikram Mukherjee&lt;br /&gt;
&lt;br /&gt;
==Homepage==&lt;br /&gt;
[http://lastword.blogspot.com/2007/03/you-wanted-suggest-you-got-suggest.html You wanted suggest? You got suggest!]&lt;br /&gt;
&lt;br /&gt;
==License==&lt;br /&gt;
[http://creativecommons.org/licenses/by-nc-nd/2.5/ Creative Commons]&lt;br /&gt;
&lt;br /&gt;
==Required Skills==&lt;br /&gt;
Enough knowledge of Javascript to figure out basic functions, and modify them to make this compatible with other hacks.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Adds suggestions to existing search boxes based on previously made searches on the blog/site.&lt;br /&gt;
&lt;br /&gt;
==Method==&lt;br /&gt;
Follow the instructions on the [http://lastword.blogspot.com/2007/03/you-wanted-suggest-you-got-suggest.html home page].&lt;br /&gt;
&lt;br /&gt;
==Sites Using This Hack==&lt;br /&gt;
* [http://www.aditya-mukherjee.com The Last Word]&lt;br /&gt;
&lt;br /&gt;
==See Also:==&lt;br /&gt;
[[Native Blog Search]]&lt;/div&gt;</description>
			<pubDate>Sun, 11 Mar 2007 07:19:27 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Native_Search_Suggest</comments>		</item>
		<item>
			<title>Google Reader list custom widget</title>
			<link>http://72.14.177.54/Bloggerhacks/Google_Reader_list_custom_widget</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Platform==&lt;br /&gt;
New Blogger, Blogger Classic, Others&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
Aditya Vikram Mukherjee&lt;br /&gt;
&lt;br /&gt;
==Homepage==&lt;br /&gt;
[http://lastword.blogspot.com/2007/03/google-reader-list-custom-widget.html Google Reader list custom widget]&lt;br /&gt;
&lt;br /&gt;
==License==&lt;br /&gt;
[http://creativecommons.org/licenses/by-nc-nd/2.5/ Creative Commons Deed]&lt;br /&gt;
&lt;br /&gt;
==Required Skills==&lt;br /&gt;
Need to copy-paste some code for the &amp;lt;head&amp;gt;, add an HTML widget and add some code to that. Should be able to modify CSS to be able to style the content properly.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Displays posts from a selected label from Google Reader, in a more style-able form, with some more features than the one offered by Google.&lt;br /&gt;
&lt;br /&gt;
==Method==&lt;br /&gt;
Follow instructions [http://lastword.blogspot.com/2007/03/google-reader-list-custom-widget.html here]&lt;br /&gt;
&lt;br /&gt;
==Sites Using This Hack==&lt;br /&gt;
* [http://lastword.blogspot.com The Last Word]&lt;br /&gt;
&lt;br /&gt;
[[Category:New Blogger]]&lt;br /&gt;
[[Category:Hack]]&lt;br /&gt;
[[Category:Hacks]]&lt;br /&gt;
[[Category:Blogger Classic]]&lt;/div&gt;</description>
			<pubDate>Wed, 07 Mar 2007 07:52:14 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Google_Reader_list_custom_widget</comments>		</item>
		<item>
			<title>Google Reader list custom widget</title>
			<link>http://72.14.177.54/Bloggerhacks/Google_Reader_list_custom_widget</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Platform==&lt;br /&gt;
New Blogger, Blogger Classic, Others&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
Aditya Vikram Mukherjee&lt;br /&gt;
&lt;br /&gt;
==Homepage==&lt;br /&gt;
[http://lastword.blogspot.com/2007/03/google-reader-list-custom-widget.html Google Reader list custom widget]&lt;br /&gt;
&lt;br /&gt;
==License==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Required Skills==&lt;br /&gt;
Need to copy-paste some code for the &amp;lt;head&amp;gt;, add an HTML widget and add some code to that. Should be able to modify CSS to be able to style the content properly.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Displays posts from a selected label from Google Reader, in a more style-able form, with some more features than the one offered by Google.&lt;br /&gt;
&lt;br /&gt;
==Method==&lt;br /&gt;
Follow instructions [http://lastword.blogspot.com/2007/03/google-reader-list-custom-widget.html here]&lt;br /&gt;
&lt;br /&gt;
==Sites Using This Hack==&lt;br /&gt;
* [http://lastword.blogspot.com The Last Word]&lt;br /&gt;
&lt;br /&gt;
[[Category:New Blogger]]&lt;br /&gt;
[[Category:Hack]]&lt;br /&gt;
[[Category:Hacks]]&lt;br /&gt;
[[Category:Blogger Classic]]&lt;/div&gt;</description>
			<pubDate>Wed, 07 Mar 2007 07:51:42 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Google_Reader_list_custom_widget</comments>		</item>
		<item>
			<title>Auto captions to images</title>
			<link>http://72.14.177.54/Bloggerhacks/Auto_captions_to_images</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Platform==&lt;br /&gt;
new Blogger, Blogger Classic&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
Aditya Vikram Mukherjee&lt;br /&gt;
&lt;br /&gt;
==Homepage==&lt;br /&gt;
http://lastword.blogspot.com/2007/03/add-captions-to-images.html&lt;br /&gt;
&lt;br /&gt;
==License==&lt;br /&gt;
[http://creativecommons.org/licenses/by-nc-nd/2.5/ Creative Commons]&lt;br /&gt;
&lt;br /&gt;
==Required Skills==&lt;br /&gt;
Should be able to paste one script line, and some CSS styles. To modify the style, one should know basic CSS.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Automatically adds a caption to images specified with specific attributes.&lt;br /&gt;
&lt;br /&gt;
==Method==&lt;br /&gt;
By pasting a script tag into the head area. Follow the instructions on the home page.&lt;br /&gt;
&lt;br /&gt;
==Sites Using This Hack==&lt;br /&gt;
*[http://lastword.blogspot.com The Last Word]&lt;br /&gt;
&lt;br /&gt;
[[Category:New Blogger]]&lt;br /&gt;
[[Category:Images]]&lt;br /&gt;
[[Category:Captions]]&lt;br /&gt;
[[Category:Blogger Classic]]&lt;br /&gt;
[[Category:Hack]]&lt;/div&gt;</description>
			<pubDate>Fri, 02 Mar 2007 02:37:24 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Auto_captions_to_images</comments>		</item>
		<item>
			<title>Asynchronic post list loading from label in sidebar</title>
			<link>http://72.14.177.54/Bloggerhacks/Asynchronic_post_list_loading_from_label_in_sidebar</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;/* Homepage */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Platform==&lt;br /&gt;
New Blogger&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
Aditya Vikram Mukherjee&lt;br /&gt;
&lt;br /&gt;
==Homepage==&lt;br /&gt;
* [http://lastword.blogspot.com/2007/01/dont-leave-page-labels-widget.html Original]&lt;br /&gt;
* [http://lastword.blogspot.com/2007/02/dltp-labels-widget-updated.html Updated Version]&lt;br /&gt;
&lt;br /&gt;
==License==&lt;br /&gt;
[http://creativecommons.org/licenses/by-nc-nd/2.5/ Attribution/Non-commercial/No derivative]&lt;br /&gt;
&lt;br /&gt;
==Required Skills==&lt;br /&gt;
Should be able to modify the template, and widget code. Some CSS knowledge to style the lists would be recommended.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Loads the posts from a label, as a list right under the label in the sidebar widget. The load is asynchronous, and toggle-able with memory (multiple labels can be opened and closed at the same time).&lt;br /&gt;
&lt;br /&gt;
==Method==&lt;br /&gt;
Paste codes on [http://lastword.blogspot.com/2007/01/dont-leave-page-labels-widget.html homepage] and follow given instructions.&lt;br /&gt;
&lt;br /&gt;
==Sites Using This Hack==&lt;br /&gt;
[http://lastword.blogspot.com The Last Word]&lt;br /&gt;
(add your sites)&lt;br /&gt;
&lt;br /&gt;
==See Also:==&lt;br /&gt;
[http://www.editthis.info/bloggerhacks/AJAX_Labels AJAX Labels]&lt;br /&gt;
&lt;br /&gt;
[[Category:Hacks]] [[Category:New Blogger]] [[Category:Labels]] [[Category:Categories]] [[Category:Navigation]]&lt;/div&gt;</description>
			<pubDate>Tue, 06 Feb 2007 13:21:04 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Asynchronic_post_list_loading_from_label_in_sidebar</comments>		</item>
		<item>
			<title>Blogger Smilies</title>
			<link>http://72.14.177.54/Bloggerhacks/Blogger_Smilies</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Platform==&lt;br /&gt;
New Blogger, Blogger Classic&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
Aditya Vikram Mukherjee&lt;br /&gt;
&lt;br /&gt;
==Homepage==&lt;br /&gt;
[http://lastword.blogspot.com/2007/01/blogger-smilies.html Blogger Smilies]&lt;br /&gt;
&lt;br /&gt;
==License==&lt;br /&gt;
[http://creativecommons.org/licenses/by-nc-nd/2.5/ Creative Commons Deed]&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Replaces text smilies to their graphical versions by adding small icons/emoticons to the post and comment body.&lt;br /&gt;
&lt;br /&gt;
==Method==&lt;br /&gt;
Copy/Paste one line of code to the &amp;lt;head&amp;gt; area of the template.&lt;br /&gt;
&lt;br /&gt;
==Sites Using This Hack==&lt;br /&gt;
* [http://singpolyma-tech.blogspot.com/ Singpolyma - Technical Blog]&lt;br /&gt;
* [http://hackosphere.blogspot.com/ Hackosphere]&lt;br /&gt;
* [http://blogger-hacked.blogspot.com/ Blogger-Hacked]&lt;br /&gt;
''(Would like blog owners to add their pages to this list)''&lt;br /&gt;
&lt;br /&gt;
==Extensions / Alternates==&lt;br /&gt;
[http://blogger-hacked.blogspot.com/2007/01/comment-buttons-user-script.html Deepak's comment buttons userscript]&lt;br /&gt;
&lt;br /&gt;
[[Category:New Blogger]]&lt;br /&gt;
[[Category:Blogger Classic]]&lt;br /&gt;
&lt;br /&gt;
[http://arephyz.blogspot.com Arephyz Mix Content Blog]&lt;br /&gt;
&lt;br /&gt;
[[Category:New Blogger]]&lt;br /&gt;
[[Category:Blogger Classic]]&lt;/div&gt;</description>
			<pubDate>Thu, 01 Feb 2007 10:04:16 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Blogger_Smilies</comments>		</item>
		<item>
			<title>Blogger Smilies</title>
			<link>http://72.14.177.54/Bloggerhacks/Blogger_Smilies</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Platform==&lt;br /&gt;
New Blogger, Blogger Classic&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
Aditya Vikram Mukherjee&lt;br /&gt;
&lt;br /&gt;
==Homepage==&lt;br /&gt;
[http://lastword.blogspot.com/2007/01/blogger-smilies.html Blogger Smilies]&lt;br /&gt;
&lt;br /&gt;
==License==&lt;br /&gt;
[http://creativecommons.org/licenses/by-nc-nd/2.5/ Creative Commons Deed]&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Replaces text smilies to their graphical versions by adding small icons/emoticons to the post and comment body.&lt;br /&gt;
&lt;br /&gt;
==Method==&lt;br /&gt;
Copy/Paste one line of code to the &amp;lt;head&amp;gt; area of the template.&lt;br /&gt;
&lt;br /&gt;
==Sites Using This Hack==&lt;br /&gt;
[http://singpolyma-tech.blogspot.com/ Singpolyma - Technical Blog]&lt;br /&gt;
[http://hackosphere.blogspot.com/ Hackosphere]&lt;br /&gt;
[http://blogger-hacked.blogspot.com/ Blogger-Hacked]&lt;br /&gt;
''(Would like blog owners to add their pages to this list)''&lt;br /&gt;
&lt;br /&gt;
==Extensions / Alternates==&lt;br /&gt;
[http://blogger-hacked.blogspot.com/2007/01/comment-buttons-user-script.html Deepak's comment buttons userscript]&lt;br /&gt;
&lt;br /&gt;
[[Category:New Blogger]]&lt;br /&gt;
[[Category:Blogger Classic]]&lt;br /&gt;
&lt;br /&gt;
[http://arephyz.blogspot.com Arephyz Mix Content Blog]&lt;br /&gt;
&lt;br /&gt;
[[Category:New Blogger]]&lt;br /&gt;
[[Category:Blogger Classic]]&lt;/div&gt;</description>
			<pubDate>Thu, 01 Feb 2007 10:03:38 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Blogger_Smilies</comments>		</item>
		<item>
			<title>Keep current date and time on posts</title>
			<link>http://72.14.177.54/Bloggerhacks/Keep_current_date_and_time_on_posts</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Platform==&lt;br /&gt;
New Blogger&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
[http://aditya-mukherjee.com Aditya Mukherjee]&lt;br /&gt;
&lt;br /&gt;
==Homepage==&lt;br /&gt;
[http://lastword.blogspot.com/2006/12/keep-current-datetime-on-posts.html Keep current date/time on posts]&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Is effectively a port of Jasper's Greasemonkey script which did the same thing, to the new Blogger since his broke with the upgrade.&lt;br /&gt;
&lt;br /&gt;
==Method==&lt;br /&gt;
Install a Greasemonkey script from the home page linked.&lt;br /&gt;
&lt;br /&gt;
[[Category:New Blogger]]&lt;br /&gt;
[[Category:Post]]&lt;br /&gt;
[[Category:Greasemonkey]]&lt;br /&gt;
[[Category:Date]]&lt;br /&gt;
[[Category:Time]]&lt;/div&gt;</description>
			<pubDate>Thu, 01 Feb 2007 10:01:01 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Keep_current_date_and_time_on_posts</comments>		</item>
		<item>
			<title>Designer Dates</title>
			<link>http://72.14.177.54/Bloggerhacks/Designer_Dates</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Platform==&lt;br /&gt;
New Blogger, Blogger Classic&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
Aditya Vikram Mukherjee&lt;br /&gt;
&lt;br /&gt;
==Homepage==&lt;br /&gt;
http://lastword.blogspot.com/2007/01/date-to-behold.html&lt;br /&gt;
&lt;br /&gt;
==License==&lt;br /&gt;
[http://creativecommons.org/licenses/by-nc-nd/2.5/ Attribution/Non-commercial/No Derivative]&lt;br /&gt;
&lt;br /&gt;
==Required Skills==&lt;br /&gt;
Must be able to edit the template, replace code and work with CSS&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Takes the Blogger dates, and turns them into something more customizable and design-able for truly beautiful looking dates. First seen at [http://lifehacker.com Lifehacker].&lt;br /&gt;
&lt;br /&gt;
==Method==&lt;br /&gt;
Follow instructions on homepage&lt;br /&gt;
&lt;br /&gt;
==Sites Using This Hack==&lt;br /&gt;
[http://lastword.blogspot.com The Last Word (beta)]&lt;br /&gt;
(users kindly add your pages to this list)&lt;br /&gt;
&lt;br /&gt;
[[Category:Hacks]]&lt;br /&gt;
[[Category:New Blogger]]&lt;br /&gt;
[[Category:Date]]&lt;br /&gt;
[[Category:Design]]&lt;/div&gt;</description>
			<pubDate>Thu, 01 Feb 2007 10:00:44 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Designer_Dates</comments>		</item>
		<item>
			<title>Blogger Stickies</title>
			<link>http://72.14.177.54/Bloggerhacks/Blogger_Stickies</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Author==&lt;br /&gt;
[http://aditya-mukherjee.com Aditya Mukherjee]&lt;br /&gt;
&lt;br /&gt;
==Homepage==&lt;br /&gt;
http://lastword.blogspot.com/2006/12/blogger-post-notes.html&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Adds a sticky type text box to the post editor which can be used to maintain notes about a post. It remains persistent through saving and publishing the post, so your notes will always show up.&lt;br /&gt;
&lt;br /&gt;
==Method== &lt;br /&gt;
Install a greasemonkey script from the page linked to above.&lt;br /&gt;
&lt;br /&gt;
[[Category:New Blogger]]&lt;br /&gt;
[[Category:Blogger Classic]]&lt;br /&gt;
[[Category:Emoticons]]&lt;br /&gt;
[[Category:Smilies]]&lt;/div&gt;</description>
			<pubDate>Thu, 01 Feb 2007 09:59:25 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Blogger_Stickies</comments>		</item>
		<item>
			<title>Designer Dates</title>
			<link>http://72.14.177.54/Bloggerhacks/Designer_Dates</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Platform==&lt;br /&gt;
New Blogger, Blogger Classic&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
Aditya Vikram Mukherjee&lt;br /&gt;
&lt;br /&gt;
==Homepage==&lt;br /&gt;
http://lastword.blogspot.com/2007/01/date-to-behold.html&lt;br /&gt;
&lt;br /&gt;
==License==&lt;br /&gt;
[http://creativecommons.org/licenses/by-nc-nd/2.5/ Attribution/Non-commercial/No Derivative]&lt;br /&gt;
&lt;br /&gt;
==Required Skills==&lt;br /&gt;
Must be able to edit the template, replace code and work with CSS&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Takes the Blogger dates, and turns them into something more customizable and design-able for truly beautiful looking dates. First seen at [http://lifehacker.com Lifehacker].&lt;br /&gt;
&lt;br /&gt;
==Method==&lt;br /&gt;
Follow instructions on homepage&lt;br /&gt;
&lt;br /&gt;
==Sites Using This Hack==&lt;br /&gt;
[http://lastword.blogspot.com The Last Word (beta)]&lt;br /&gt;
(users kindly add your pages to this list)&lt;br /&gt;
&lt;br /&gt;
[[Category:Hacks]] [[Category:New Blogger]] [[Category:Dates]] [[Category:Design]]&lt;/div&gt;</description>
			<pubDate>Thu, 01 Feb 2007 09:56:21 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Designer_Dates</comments>		</item>
		<item>
			<title>Asynchronic post list loading from label in sidebar</title>
			<link>http://72.14.177.54/Bloggerhacks/Asynchronic_post_list_loading_from_label_in_sidebar</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Platform==&lt;br /&gt;
New Blogger&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
Aditya Vikram Mukherjee&lt;br /&gt;
&lt;br /&gt;
==Homepage==&lt;br /&gt;
http://lastword.blogspot.com/2007/01/dont-leave-page-labels-widget.html&lt;br /&gt;
&lt;br /&gt;
==License==&lt;br /&gt;
[http://creativecommons.org/licenses/by-nc-nd/2.5/ Attribution/Non-commercial/No derivative]&lt;br /&gt;
&lt;br /&gt;
==Required Skills==&lt;br /&gt;
Should be able to modify the template, and widget code. Some CSS knowledge to style the lists would be recommended.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Loads the posts from a label, as a list right under the label in the sidebar widget. The load is asynchronous, and toggle-able with memory (multiple labels can be opened and closed at the same time).&lt;br /&gt;
&lt;br /&gt;
==Method==&lt;br /&gt;
Paste codes on [http://lastword.blogspot.com/2007/01/dont-leave-page-labels-widget.html homepage] and follow given instructions.&lt;br /&gt;
&lt;br /&gt;
==Sites Using This Hack==&lt;br /&gt;
[http://lastword.blogspot.com The Last Word]&lt;br /&gt;
(add your sites)&lt;br /&gt;
&lt;br /&gt;
==See Also:==&lt;br /&gt;
[http://www.editthis.info/bloggerhacks/AJAX_Labels AJAX Labels]&lt;br /&gt;
&lt;br /&gt;
[[Category:Hacks]] [[Category:New Blogger]] [[Category:Labels]] [[Category:Categories]] [[Category:Navigation]]&lt;/div&gt;</description>
			<pubDate>Thu, 01 Feb 2007 09:55:36 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Asynchronic_post_list_loading_from_label_in_sidebar</comments>		</item>
		<item>
			<title>Asynchronic post list loading from label in sidebar</title>
			<link>http://72.14.177.54/Bloggerhacks/Asynchronic_post_list_loading_from_label_in_sidebar</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Platform==&lt;br /&gt;
New Blogger&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
Aditya Vikram Mukherjee&lt;br /&gt;
&lt;br /&gt;
==Homepage==&lt;br /&gt;
http://lastword.blogspot.com/2007/01/dont-leave-page-labels-widget.html&lt;br /&gt;
&lt;br /&gt;
==License==&lt;br /&gt;
[http://creativecommons.org/licenses/by-nc-nd/2.5/ Attribution/Non-commercial/No derivative]&lt;br /&gt;
&lt;br /&gt;
==Required Skills==&lt;br /&gt;
Should be able to modify the template, and widget code. Some CSS knowledge to style the lists would be recommended.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Loads the posts from a label, as a list right under the label in the sidebar widget. The load is asynchronous, and toggle-able with memory (multiple labels can be opened and closed at the same time).&lt;br /&gt;
&lt;br /&gt;
==Method==&lt;br /&gt;
Paste codes on [http://lastword.blogspot.com/2007/01/dont-leave-page-labels-widget.html homepage] and follow given instructions.&lt;br /&gt;
&lt;br /&gt;
==Sites Using This Hack==&lt;br /&gt;
[http://lastword.blogspot.com The Last Word]&lt;br /&gt;
(add your sites)&lt;br /&gt;
&lt;br /&gt;
==See Also:==&lt;br /&gt;
[http://www.editthis.info/bloggerhacks/AJAX_Labels AJAX Labels]&lt;/div&gt;</description>
			<pubDate>Thu, 01 Feb 2007 09:47:21 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Asynchronic_post_list_loading_from_label_in_sidebar</comments>		</item>
		<item>
			<title>Designer Dates</title>
			<link>http://72.14.177.54/Bloggerhacks/Designer_Dates</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Platform==&lt;br /&gt;
New Blogger, Blogger Classic&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
Aditya Vikram Mukherjee&lt;br /&gt;
&lt;br /&gt;
==Homepage==&lt;br /&gt;
http://lastword.blogspot.com/2007/01/date-to-behold.html&lt;br /&gt;
&lt;br /&gt;
==License==&lt;br /&gt;
[http://creativecommons.org/licenses/by-nc-nd/2.5/ Attribution/Non-commercial/No Derivative]&lt;br /&gt;
&lt;br /&gt;
==Required Skills==&lt;br /&gt;
Must be able to edit the template, replace code and work with CSS&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Takes the Blogger dates, and turns them into something more customizable and design-able for truly beautiful looking dates. First seen at [http://lifehacker.com Lifehacker].&lt;br /&gt;
&lt;br /&gt;
==Method==&lt;br /&gt;
Follow instructions on homepage&lt;br /&gt;
&lt;br /&gt;
==Sites Using This Hack==&lt;br /&gt;
[http://lastword.blogspot.com The Last Word (beta)]&lt;br /&gt;
(users kindly add your pages to this list)&lt;/div&gt;</description>
			<pubDate>Mon, 29 Jan 2007 15:09:42 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Designer_Dates</comments>		</item>
		<item>
			<title>Blogger Smilies</title>
			<link>http://72.14.177.54/Bloggerhacks/Blogger_Smilies</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;/* License */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Platform==&lt;br /&gt;
New Blogger, Blogger Classic&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
Aditya Vikram Mukherjee&lt;br /&gt;
&lt;br /&gt;
==Homepage==&lt;br /&gt;
[http://lastword.blogspot.com/2007/01/blogger-smilies.html Blogger Smilies]&lt;br /&gt;
&lt;br /&gt;
==License==&lt;br /&gt;
[http://creativecommons.org/licenses/by-nc-nd/2.5/ Creative Commons Deed]&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Replaces text smilies to their graphical versions by adding small icons/emoticons to the post and comment body.&lt;br /&gt;
&lt;br /&gt;
==Method==&lt;br /&gt;
Copy/Paste one line of code to the &amp;lt;head&amp;gt; area of the template.&lt;br /&gt;
&lt;br /&gt;
==Sites Using This Hack==&lt;br /&gt;
* [http://singpolyma-tech.blogspot.com/ Singpolyma - Technical Blog]&lt;br /&gt;
''(Would like blog owners to add their pages to this list)''&lt;br /&gt;
&lt;br /&gt;
==Extensions / Alternates==&lt;br /&gt;
[http://blogger-hacked.blogspot.com/2007/01/comment-buttons-user-script.html Deepak's comment buttons userscript]&lt;br /&gt;
&lt;br /&gt;
[[Category:New Blogger]]&lt;br /&gt;
[[Category:Blogger Classic]]&lt;/div&gt;</description>
			<pubDate>Fri, 19 Jan 2007 08:54:44 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Blogger_Smilies</comments>		</item>
		<item>
			<title>Native Blog Search</title>
			<link>http://72.14.177.54/Bloggerhacks/Native_Blog_Search</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;/* License */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Version==&lt;br /&gt;
1.5&lt;br /&gt;
&lt;br /&gt;
==Platform==&lt;br /&gt;
Old/New Blogger (both)&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
Aditya Vikram Mukherjee&lt;br /&gt;
&lt;br /&gt;
==Homepage==&lt;br /&gt;
http://lastword.blogspot.com/2006/12/native-blog-search-improved_6559.html&lt;br /&gt;
&lt;br /&gt;
==License==&lt;br /&gt;
Code can be modified to suit personal needs, as long as the link back to my page is not removed. And if you be nice and add your blog to the list at the bottom? :)&lt;br /&gt;
&lt;br /&gt;
==Required Skills==&lt;br /&gt;
Nothing very technical. The codes are provided with enough guidelines to be able to help anyone include it in their template and begin using it. A little familiarity with the new template (knowing how to alter CSS, conditional tags) will help in extending the hack to be more specific and customised, but it is not required.&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
It provides an 'in-blog' blog search, which cuts out the Google blog search page completely. Results are loaded asynchronously, hence the searcher does not have to leave the page to get the search results. It can be styled to match the template, hence the search looks as 'native' to the blog as possible.&lt;br /&gt;
&lt;br /&gt;
==Method==&lt;br /&gt;
There are three blocks of code. One for the &amp;lt;head&amp;gt; section, which holds all the functions. One is the search form itself, and one if the container tag to hold and display the results. Each one has been explained properly as to how to include them in your template.&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;head&amp;gt; section part required one variable to be configured, which has been highlighted in the included instructions.&lt;br /&gt;
&lt;br /&gt;
==Sites Using This Hack==&lt;br /&gt;
http://bloggeratto.blogspot.com&lt;br /&gt;
&lt;br /&gt;
==Extensions / Alternates==&lt;br /&gt;
This is something like Google's AJAX Search API. Google's API is better, but harder to implement and achiever more or less the same thing.&lt;br /&gt;
&lt;br /&gt;
[[Category:New Blogger]]&lt;br /&gt;
[[Category:Blogger Classic]]&lt;/div&gt;</description>
			<pubDate>Fri, 19 Jan 2007 08:54:22 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Native_Blog_Search</comments>		</item>
		<item>
			<title>Request Hacks/Solved</title>
			<link>http://72.14.177.54/Bloggerhacks/Request_Hacks/Solved</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;/* Sending email notification to ALL contributors when a posting or a comment is added */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is for hack requests that were on the [[Request Hacks]] page, that are believed to have been amply solved.  If one of these hacks is yours and you do not feel the hack is sufficient, please move your hack back to the other page ''and attach a note as to what more must be done.''  Thank you.&lt;br /&gt;
&lt;br /&gt;
==Solved Requests==&lt;br /&gt;
&lt;br /&gt;
===Sending email notification to ALL contributors when a posting or a comment is added===&lt;br /&gt;
&lt;br /&gt;
'''Description'''&lt;br /&gt;
&lt;br /&gt;
We are a team who uses a blog to submit ideas and propose solutions to each other.&lt;br /&gt;
&lt;br /&gt;
'''The Problem'''&lt;br /&gt;
&lt;br /&gt;
So far we have not yet found a suitable and easy way to get all the contributors in the blog notified when a posting or a comment is submitted.  &lt;br /&gt;
We have looked at the settings and found that as regards postings it only allows the individual submitting a posting to receive notification and as regards comments, only the administrator to receive notification.&lt;br /&gt;
In both instances only one email address is allowed in the field.&lt;br /&gt;
&lt;br /&gt;
'''A solution'''&lt;br /&gt;
&lt;br /&gt;
Anybody with enough technical expertise [which we inthe blog do not have] could try and guide us towards a solution?&lt;br /&gt;
&lt;br /&gt;
The blog in question is: http://edtf.blogspot.com&lt;br /&gt;
&lt;br /&gt;
Thanks for your help.&lt;br /&gt;
&lt;br /&gt;
Max&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Max: May I suggest a comment feed? These are standard in Blogger beta, but there are plenty of versions that will work for regular blogger. One possible solution... use the blogger comment notification e-mail address to post new comments to a specially set-up google group, the have all of your team members join the group. They'll be able to get notice of the updates by e-mail, or use a feedreader to subscribe to the group's feed. See [http://blogfresh.blogspot.com/2005/12/another-comment-feed-hack.html Freshblog] for more info.&lt;br /&gt;
&lt;br /&gt;
* Comments feed subbed to by email is definitely the textbook answer.  Another option could be to have the Gmail account that is receiving notifications (you ''are'' on Gmail, right? ;) )  filter the incomings to auto-forward to all members. - [[User:Singpolyma|Singpolyma]] 09:26, 7 November 2006 (EST)&lt;br /&gt;
&lt;br /&gt;
* On the same lines, maybe a Google group with all the contributors as members, then the notifications sent to the e-mail address of the group? That will automatically alert all the contributors in one go! --[[User:Adityavm|Aditya]] 04:20, 17 January 2007 (EST)&lt;br /&gt;
&lt;br /&gt;
===Author Comments===&lt;br /&gt;
&lt;br /&gt;
'''Description'''&lt;br /&gt;
I want a way to make it so when I comment on my own posts, my comments appear with a different font color.&lt;br /&gt;
&lt;br /&gt;
'''Link'''&lt;br /&gt;
Ramani of [http://www.hackosphere.blogspot.com/ Hackosphere] uses it on his blog. You can see it in action [http://hackosphere.blogspot.com/2006/09/tweak-your-label-tabs.html#comment-4855462521027722202 here.] I just don't know how to do it.&lt;br /&gt;
&lt;br /&gt;
Author Comments Highlighting comes to us courtesy of Aditya at [http://the-lastword.blogspot.com/2006/02/author-comments-highlighting-hack.html The Last Word]. Enjoy.&lt;br /&gt;
&lt;br /&gt;
* Another option is [[Comment Photos and Highlighting]] (the photos are totally optional) - [[User:Singpolyma|Singpolyma]] 09:28, 7 November 2006 (EST)&lt;br /&gt;
&lt;br /&gt;
===Expandable Posts in Blogger Beta===&lt;br /&gt;
'''Description'''&lt;br /&gt;
I want a way to make expandable posts like we saw in [http://5memes.blogspot.com 5Memes]. The problem is that the hack in this wiki teachs how to make that on Blogger's template, but Blogger's Beta Templates are different and they don´t have the Style tags.&lt;br /&gt;
'''Link'''&lt;br /&gt;
[http://5memes.blogspot.com 5Memes]&lt;br /&gt;
&lt;br /&gt;
* See [http://hackosphere.blogspot.com/2006/09/expandable-post-summaries-with-beta.html] or [http://hackosphere.blogspot.com/2006/11/selective-expandable-posts.html] -- there are others and a new one that takes less bandwidth should be forthcoming&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Make link go to wikipedia===&lt;br /&gt;
I want &amp;lt;nowiki&amp;gt;[[foo]]&amp;lt;/nowiki&amp;gt; to go to the Wikipedia page called &amp;quot;foo&amp;quot;.  How?&lt;br /&gt;
&lt;br /&gt;
* That's a page outside this wiki, so you'll need a single square bracket, full url, space, link anchor word, closing single square bracket, like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;[http://en.wikipedia.org/wiki/Foo Foo]&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Pick up labels in adding to delicious (beta)===&lt;br /&gt;
I know there is a known hack to add capability to link to delicious from beta blogger posts. But right now it does not pick up labels of the post and create automatic tags for delicious bookmark. I know it should be not so difficult to include the tags for the delicious link. &lt;br /&gt;
&lt;br /&gt;
I am quite used to the current Greasemonkey method to tag my non-beta blog posts and am itching to move to the new beta, but this is one big roadblock for me. &lt;br /&gt;
&lt;br /&gt;
Any takers? &lt;br /&gt;
&lt;br /&gt;
http://usctrojan98.blogspot.com&lt;br /&gt;
&lt;br /&gt;
* I have completed this [http://singpolyma-tech.blogspot.com/2006/12/for-new-blogger-blogger-delicious.html on my blog] :)&lt;br /&gt;
&lt;br /&gt;
===My feeds for autodetection (beta)===&lt;br /&gt;
&lt;br /&gt;
Is it possible to add my feedburner feed in the beta blog so that autodetection is done on the feedburner feed rather than the default Atom feed or even the beta blogger RSS feed? &lt;br /&gt;
&lt;br /&gt;
http://usctrojan98.blogspot.com&lt;br /&gt;
&lt;br /&gt;
* See these comments over on FreshBlog: [http://blogfresh.blogspot.com/2006/10/bloggerhacks-wiki-hack-requests.html#c116121280680448240 #1], [http://blogfresh.blogspot.com/2006/10/bloggerhacks-wiki-hack-requests.html#c116132102586042259 #2], [http://blogfresh.blogspot.com/2006/10/bloggerhacks-wiki-hack-requests.html#c116145957573341917 #3] - [[User:Singpolyma|Singpolyma]] 09:32, 7 November 2006 (EST)&lt;br /&gt;
&lt;br /&gt;
===Label Hacks===&lt;br /&gt;
I am curious to know if we could have a Label Cloud thats displays the most labels most used on my blog page.&lt;br /&gt;
OR&lt;br /&gt;
I also wish to know if I can display the most used lables on my blog instead of the whole list of labels.&lt;br /&gt;
&lt;br /&gt;
https://tarunsblogs.blogspot.com&lt;br /&gt;
&lt;br /&gt;
* See [http://phydeaux3.blogspot.com/2006/09/code-for-beta-blogger-label-cloud.html Code for Beta Blogger Label Cloud] and [http://phy3blog.googlepages.com/Beta-Blogger-Label-Cloud.html  Setup and configuration for Blogger in Beta Label Clouds] - [[User:Singpolyma|Singpolyma]] 09:35, 7 November 2006 (EST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Related Posts from your blog under a post you just wrote===&lt;br /&gt;
&lt;br /&gt;
I'd like to have a short list of related posts that I have written on my blog underneath the post I just wrote. I've seen this hack on non beta blogger, but have yet to see it on beta. Thanks.&lt;br /&gt;
&lt;br /&gt;
http://frugallawstudent.blogspot.com&lt;br /&gt;
&lt;br /&gt;
You might want to check out [http://singpolyma-tech.blogspot.com/2006/09/freshtags-singpolyma-2.html FreshTags for Beta]&lt;br /&gt;
Or [http://hoctro.blogspot.com/2006/11/blogger-hack-related-articles-widget_24.html Hoctro's hack]&lt;br /&gt;
Or [http://purplemoggy.blogspot.com/2006/12/related-posts.html PurpleMoggy's Hack]&lt;br /&gt;
&lt;br /&gt;
=== Add Calendar===&lt;br /&gt;
How can we add calendar to our blogs, especially highlighting the dates on which have entires marked?&lt;br /&gt;
I believe this is one of the oldest problems at Blogger's. The label part is added hopefully the calender will be too.&lt;br /&gt;
&lt;br /&gt;
http://tarunsblogs.blogspot.com&lt;br /&gt;
&lt;br /&gt;
I have written a [http://singpolyma-tech.blogspot.com/2006/12/blogger-calendar.html Blogger Calendar] hack :)&lt;/div&gt;</description>
			<pubDate>Wed, 17 Jan 2007 09:20:33 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Request_Hacks/Solved</comments>		</item>
		<item>
			<title>Blogger Smilies</title>
			<link>http://72.14.177.54/Bloggerhacks/Blogger_Smilies</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Platform==&lt;br /&gt;
New Blogger, Blogger Classic&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
Aditya Vikram Mukherjee&lt;br /&gt;
&lt;br /&gt;
==Homepage==&lt;br /&gt;
[http://lastword.blogspot.com/2007/01/blogger-smilies.html Blogger Smilies]&lt;br /&gt;
&lt;br /&gt;
==License==&lt;br /&gt;
Creative Commons&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Replaces text smilies to their graphical versions by adding small icons/emoticons to the post and comment body.&lt;br /&gt;
&lt;br /&gt;
==Method==&lt;br /&gt;
Copy/Paste one line of code to the &amp;lt;head&amp;gt; area of the template.&lt;br /&gt;
&lt;br /&gt;
==Sites Using This Hack==&lt;br /&gt;
(Would like blog owners to add their pages to this list)&lt;br /&gt;
&lt;br /&gt;
==Extensions / Alternates==&lt;br /&gt;
[http://blogger-hacked.blogspot.com/2007/01/comment-buttons-user-script.html Deepak's comment buttons userscript]&lt;br /&gt;
&lt;br /&gt;
[[Category:New Blogger]]&lt;br /&gt;
[[Category:Blogger Classic]]&lt;/div&gt;</description>
			<pubDate>Wed, 17 Jan 2007 09:16:43 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Blogger_Smilies</comments>		</item>
		<item>
			<title>Keep current date and time on posts</title>
			<link>http://72.14.177.54/Bloggerhacks/Keep_current_date_and_time_on_posts</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Platform==&lt;br /&gt;
New Blogger&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
[http://aditya-mukherjee.com Aditya Mukherjee]&lt;br /&gt;
&lt;br /&gt;
==Homepage==&lt;br /&gt;
[http://lastword.blogspot.com/2006/12/keep-current-datetime-on-posts.html Keep current date/time on posts]&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Is effectively a port of Jasper's Greasemonkey script which did the same thing, to the new Blogger since his broke with the upgrade.&lt;br /&gt;
&lt;br /&gt;
==Method==&lt;br /&gt;
Install a Greasemonkey script from the home page linked.&lt;br /&gt;
&lt;br /&gt;
[[Category:New Blogger]]&lt;/div&gt;</description>
			<pubDate>Wed, 17 Jan 2007 09:15:46 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Keep_current_date_and_time_on_posts</comments>		</item>
		<item>
			<title>Blogger Stickies</title>
			<link>http://72.14.177.54/Bloggerhacks/Blogger_Stickies</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Author==&lt;br /&gt;
[http://aditya-mukherjee.com Aditya Mukherjee]&lt;br /&gt;
&lt;br /&gt;
==Homepage==&lt;br /&gt;
http://lastword.blogspot.com/2006/12/blogger-post-notes.html&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Adds a sticky type text box to the post editor which can be used to maintain notes about a post. It remains persistent through saving and publishing the post, so your notes will always show up.&lt;br /&gt;
&lt;br /&gt;
==Method== &lt;br /&gt;
Install a greasemonkey script from the page linked to above.&lt;br /&gt;
&lt;br /&gt;
[[Category:New Blogger]]&lt;br /&gt;
[[Category:Blogger Classic]]&lt;/div&gt;</description>
			<pubDate>Wed, 17 Jan 2007 09:15:35 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Blogger_Stickies</comments>		</item>
		<item>
			<title>Request Hacks</title>
			<link>http://72.14.177.54/Bloggerhacks/Request_Hacks</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;/* Archives: drop-down menu with titles */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TopMenu}}&lt;br /&gt;
[[Category:User Editable Pages]]&lt;br /&gt;
&lt;br /&gt;
Looking for a section that used to be here?  Solved hacks are moved to the [[Request Hacks/Solved|Solved Requests]] page, along with links to the solutions.  Feel free to move your own requests there when solved.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Do you want a particular feature for your blog? Are you pretty sure that it is possible? Add a new section to this page describing your requirements in detail and linking to examples, or to the site that you'd like to edit. I can't promise that your need will be met, but I hope to guarantee that it will be seen by people who can help.&lt;br /&gt;
&lt;br /&gt;
To help the community to understand what you're looking for, please include:&lt;br /&gt;
&lt;br /&gt;
# A full description of the feature that you're looking for.&lt;br /&gt;
# An explanation of the purpose.&lt;br /&gt;
# A link to your blog, or to any other resources / examples that you want to use.&lt;br /&gt;
&lt;br /&gt;
The more detail you are able to provide, the more likely it is that another user will be able to assist you.&lt;br /&gt;
&lt;br /&gt;
==Undiscussed Requests==&lt;br /&gt;
&lt;br /&gt;
===Cookies for peek-a-boo===&lt;br /&gt;
Remember the state of peek-a-boo comments in a cookie and maintain that state when the visitor next comes.  Doable, but probably take a bit.  Suggested at http://singpolyma-tech.blogspot.com/2006/10/comments-on-mainarchive-page-peek-boo.html#c116591239141648939&lt;br /&gt;
&lt;br /&gt;
===Hide Posts From Homepage And Archive Pages===&lt;br /&gt;
&lt;br /&gt;
I want to hide certain posts from the home page and the archive pages, but I still want to show the post on its own page. Eg:&lt;br /&gt;
&lt;br /&gt;
Hide Post: MYBLOG.blogspot.com/&lt;br /&gt;
&lt;br /&gt;
Hide Post: MYBLOG.blogspot.com/2007_01_01_archive.html&lt;br /&gt;
&lt;br /&gt;
Show Post: MYBLOG.blogspot.com/2007/01/POSTNAME.html&lt;br /&gt;
&lt;br /&gt;
Also, I'd like to hide these certain posts from the RSS/Atom feed.&lt;br /&gt;
&lt;br /&gt;
I don't know very much about how Blogger's special template markup works, but I saw some stuff that looks like it is possible to do if/then logic.&lt;br /&gt;
&lt;br /&gt;
Maybe have if/then logic saying&lt;br /&gt;
&lt;br /&gt;
    if on home page&lt;br /&gt;
        if post has label [name of hidden label]&lt;br /&gt;
            then don't show post&lt;br /&gt;
&lt;br /&gt;
I think that may be possible but I'm not sure just how.&lt;br /&gt;
&lt;br /&gt;
===Have The Last Word===&lt;br /&gt;
As a blogger, I welcome a large number of comments on my controversial posts. Being opinionated, I like to have the last word too. While I monitor discussions, keeping track of whether or not each post is &amp;quot;open&amp;quot; (ie I haven't had the final say) is difficult. &lt;br /&gt;
&lt;br /&gt;
I'd like a tool that will provide me with a list of my posts that have comments where the last one wasn't written by me, along with the contents of the last comment and a link to the appropriate comment editing page for that post.&lt;br /&gt;
&lt;br /&gt;
I imagine I could go to a page, enter a URL and my blogger name, then click a button. The results page would consist of a list of links and comments. Dates might be nice too. It wouldn't need to be integrated into my blog, be very stylish or even reliable, since it's just a tool I could check periodically when feeling bored.&lt;br /&gt;
&lt;br /&gt;
It might have an option to show only posts where I have commented but I am ''not'' the last commenter. This would be handy for blogs that I don't own, but comment on frequently.&lt;br /&gt;
&lt;br /&gt;
The building blocks for such a solution might include:&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;My comments blog&amp;quot; (HTML) via [[Comment Feed Using Another Blog]]&lt;br /&gt;
* &amp;quot;My comments feed&amp;quot; (RSS) via above&lt;br /&gt;
* [http://www.ts0.com/bloggercomments/ Thom's] [[Comment Feed using remote parser]]&lt;br /&gt;
* [http://www.anniyalogam.com/scripts/browser.php Ramani's] [[Archive Browser]]&lt;br /&gt;
* [http://anniyalogam.com/blog/2006/06/29/one-click-notification/ Ramani's] [[One-click Notification]]&lt;br /&gt;
&lt;br /&gt;
Any takers?&lt;br /&gt;
&lt;br /&gt;
-Greg.&lt;br /&gt;
&lt;br /&gt;
* Aren't we talking something like [http://cocomment.com coComment] or [http://co.mments.com co.mments], etc? -- [[User:Singpolyma|Singpolyma]] 09:21, 7 November 2006 (EST)&lt;br /&gt;
&lt;br /&gt;
===Hide sidebar previous posts on some recent posts===&lt;br /&gt;
'''Description:'''&lt;br /&gt;
As I use the Blogger navigation in my sidebar myself a lot, so I have added the 'previous' Blogger template code to the main archive and both a 'previous' and 'recent'(using Social bookmarks javascript linkroll) section to item pages sidebars so I'm sure I can access all my posts easily.&lt;br /&gt;
&lt;br /&gt;
'''Problem:'''&lt;br /&gt;
This works fine on old posts but on the first newer posts (item pages) they both show nearly the same links, so I would like to hide the 'recent' sidebar block, on say, the the first 3 new posts.&lt;br /&gt;
&lt;br /&gt;
'''Link:''' &lt;br /&gt;
The [http://3spots.blogspot.com/ blog in question].   &lt;br /&gt;
&lt;br /&gt;
Any idea how I could do that? &lt;br /&gt;
&lt;br /&gt;
Thanks, it's a great idea this wiki!  [[User:Ycc2106|Ycc2106]] 07:04, 24 July 2006 (EDT)&lt;br /&gt;
&lt;br /&gt;
===Merge blogs===&lt;br /&gt;
Basically, I have 6 personal blogs on my Blogger dashboard. That's because I wanted categorization before Blogger Beta introduced labels. For a number of reasons, I want to merge my blogs into one. If there is a way to import all the posts from one blog into another, that would be an ideal solution. Please advise or create a hack to do this, thanks in advance. My blog is here at [http://www.shan.ca.tf www.Shan.ca.tf]&lt;br /&gt;
&lt;br /&gt;
===Blogsend: No Linkback to Main Blog===&lt;br /&gt;
I have a [http://usurpingivy.blogspot.com Blogger Blog] that I've been updating since the Dawn of time, but my friends are all on LiveJournal.  Using the Blogsend function, I'm able to update the [http://usurpingivylj.livejournal.com LiveJournal] without actually ever stepping foot on LJ, BUT the issue becomes that BlogSend automatically adds a footer with a linkback to the main Blog.  I need to figure out a way to circumvent that, for privacy reasons on my main blog and to protect my guestbloggers.  Any ideas?  Thanks!!&lt;br /&gt;
&lt;br /&gt;
===Tag Hack for Qumana ===&lt;br /&gt;
I want to use Qumana for my post editing for Blogger. It works much better with Blogger than Performancing. But I want to change the tagging option from Technocratii to RawSugar (as exists with the great BlogThis/Tag hack.)&lt;br /&gt;
&lt;br /&gt;
My guess it's a simple business of changing the urlsoemnwhere in the Qunama script. Where? How?&lt;br /&gt;
&lt;br /&gt;
===Way to Add The Digg Button To a Beta Blogger Blog Hack===&lt;br /&gt;
This [http://diggbutton.blogspot.com/ tutorial] for the digg button for a blogger blog doesn't work in the new beta blogger. I would appreciate it if someone made a digg button code for the new beta blogger. If you'd liek to know what kind of template I use, if that will help you, check [http://allaboutadsense.blogspot.com/ All About Google Adsense].Thank You in advance.&lt;br /&gt;
&lt;br /&gt;
===Specify the Number of Labels Displayed===&lt;br /&gt;
I recently switched to Blogger Beta and have edited all my posts to remove technorati tags and add labels.  This, however, generated a very long list of labels in my sidebar.  I would like to be able to specify how many labels I want displayed, such as the top ten for instance.&lt;br /&gt;
&lt;br /&gt;
I have looked at Hackosphere, phydeaux3, and Hoctor's Place.  All of the code there, however, does a lot more than I need.  So I was hoping there would be a simpler hack for this.&lt;br /&gt;
&lt;br /&gt;
My blog is located at http://mentisworks.blogspot.com, and thank you very much in advance!&lt;br /&gt;
&lt;br /&gt;
* The inbuilt Labels widget in Blogger has an option to limit the number of labels being displayed. Is that what you're looking for? --[[User:Adityavm|Aditya]] 04:04, 17 January 2007 (EST)&lt;br /&gt;
&lt;br /&gt;
===Archives: drop-down menu with titles===&lt;br /&gt;
I can't find a way to make the blogger(beta) drop-down menu show titles of the post, instead of the date. I think it'd be extremely helpful, especially for blogs which are not updated very often.&lt;br /&gt;
&lt;br /&gt;
Or maybe do you have an idea how to make this a stand-alone widget? Probably using the site's feed?&lt;br /&gt;
&lt;br /&gt;
* Are you looking for something like the archives display [http://hackinggrounds.blogspot.com here]? --[[User:Adityavm|Aditya]] 04:08, 17 January 2007 (EST)&lt;br /&gt;
&lt;br /&gt;
===Chronological order of posts (Blogger/Blogspot)===&lt;br /&gt;
&lt;br /&gt;
Hello together,&lt;br /&gt;
&lt;br /&gt;
first off i'd like thank everybody who has put his/her effort into this wiki in order to have a platform for hacks and new ideas...&lt;br /&gt;
&lt;br /&gt;
Ever since i started blogging i wanted to have the possibility to reverse the order in which the posts appear on my blog's mainpage. And please don't get me wrong, I'm well aware of the very nature of a blog and therefore having all the new stuff on top. &lt;br /&gt;
&lt;br /&gt;
BUT: I'm running a team blog with a handful of friends and we're often posting stories in sequence or referencing things that one of our members was writing in the past...&lt;br /&gt;
&lt;br /&gt;
So the problem is, when one hasn't checked in to read the latest stories for quite a while, he looses the context and must read the older posts first to understand the current ones.&lt;br /&gt;
&lt;br /&gt;
Before we migrated to the new version of Blogger we had a solution based on this hack: [http://www.inventric.com/blog/2004/12/change-order-of-blogger-posts.html]&lt;br /&gt;
&lt;br /&gt;
A quick look into the new widget-model and XML-stuff of the new Blogger system revealed the total incompatibility of this hack.&lt;br /&gt;
&lt;br /&gt;
'''So the question is, does anybody know how to realise this along with the new Blogger or at least know how the looping of the posts inside that post widget works?'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Comments on archive pages (Blogger/Blogspot)===&lt;br /&gt;
Hello together,&lt;br /&gt;
&lt;br /&gt;
Is there a way to sort comments on archive pages with the newest one on top?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Discussed Requests==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Want to have differnt pages for main page and post pages===&lt;br /&gt;
Am using blogger classic right now. I want to have a diffent page for the main page of my blog and some other page for the inner pages ( the post pages of my blog). &lt;br /&gt;
Actually i dont want to display any adsense ad on the main page. I want ads to appear when some one reads my post page or archive page.&lt;br /&gt;
&lt;br /&gt;
Example: Digital Inspiratiaon[http://labnol.blogspot.com]&lt;br /&gt;
In this blog there are no ads in the main page. But when you click the post tile,the post opens and there are ads in the post.&lt;br /&gt;
&lt;br /&gt;
Please help me.&lt;br /&gt;
My blog is Technical Bliss[http://technicalbliss.blogspot.com]&lt;br /&gt;
I must remind you again that am using the old blogger.&lt;br /&gt;
If someone can help me, just leave a msg on my blog. I will be highly thankful.&lt;br /&gt;
&lt;br /&gt;
* This has been done (not sure if it's in a way that works for the old Blogger, but I'll check).  I'll try to find it for you.  Please realise, however, that if I cannot find it you are not likely to find someone willing to create hacks for the old Blogger -- we've all moved ;)&lt;br /&gt;
&lt;br /&gt;
===fixed blog index page (kind of a blog home page)  ===&lt;br /&gt;
'''Description:'''&lt;br /&gt;
i'm trying to make a blog for my phd research and i want to make it like a webpage but with the perks of the blogger. so i'd like to have a fixed intro page with a description of my research and then use the labels to divide the blog into relevant areas similar to a webpage. right now i've added the tab label hack from hackosphere. &lt;br /&gt;
&lt;br /&gt;
'''Problem:'''&lt;br /&gt;
i just need a simple way to have one post permanently displayed when someone loads the blog and then they can click on the labels/tabs to see the rest of the blog like a webpage. &lt;br /&gt;
&lt;br /&gt;
'''Link:''' &lt;br /&gt;
The [http://mmwiseresearch.blogspot.com/ blog in question].   &lt;br /&gt;
&lt;br /&gt;
thanks&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Solution'''&lt;br /&gt;
&lt;br /&gt;
at least a possible solution.... Check out [http://blogfresh.blogspot.com/2006/08/expand-collapse-categories-with.html Caramuel's category hack]. This hack allows you to categorise your content, but also allows you to force the display of a given category when your main page loads.... So, put your intro / sticky post in its own category, then force that category to load as the default....&lt;br /&gt;
&lt;br /&gt;
===Hide the labels field from the main page and post pages===&lt;br /&gt;
Labels are nice and all, but they take too much space off the main page and post pages. I still want to label my posts, but I don't want to display them after each post...&lt;br /&gt;
&lt;br /&gt;
'''Solution'''&lt;br /&gt;
&lt;br /&gt;
A possible solution courtesy of [http://basangpanaginip.blogspot.com/2006/09/how-to-fix-comment-count-grammar-in.html Michael] and [http://hoctro.blogspot.com/2006/09/tweaking-new-blogger-feeds-on-front.html Hoctro], both of whom have played with Blogger Beta's new &amp;quot;if / then&amp;quot; logic to create the conditional display of content on certain kinds of page. I'd recommend that you leave your labels on your post pages, so that readers can see how you've categorised a post, &amp;amp; follow the link to a category that they're interested in,... but hey, it's your blog! This will probably work w/ minimal customisation.&lt;br /&gt;
&lt;br /&gt;
===Want Visitors List at bottom of each post, in Blogger Beta===&lt;br /&gt;
I'd like to have a list, at the end of each post, that gives the name of all the people who left a comment, and links that name to the website URL they left in the comment form.  You can see what I mean here: http://wystful1.blogspot.com/&lt;br /&gt;
At the end of each post is a 'Visitors List'.&lt;br /&gt;
&lt;br /&gt;
Can someone tell me how to implement this for Blogger Beta?  Thanks.&lt;br /&gt;
&lt;br /&gt;
http://caylynn.blogspot.com&lt;br /&gt;
&lt;br /&gt;
* Commentor names / links to their comments would be entirely possible modding [http://singpolyma-tech.blogspot.com/2006/10/comments-on-mainarchive-page-peek-boo.html my peek-a-boo hack], commentor URL would require hugely more scraping (and may not be possible at all).  If anyone finds a way please let me know, though, it would be nice in my hack! - [[User:Singpolyma|Singpolyma]] 09:39, 7 November 2006 (EST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==[[Request Hacks/Solved|Solved Requests]]==&lt;/div&gt;</description>
			<pubDate>Wed, 17 Jan 2007 09:08:40 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Request_Hacks</comments>		</item>
		<item>
			<title>User:Adityavm</title>
			<link>http://72.14.177.54/Bloggerhacks/User:Adityavm</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I am Aditya, owner of [http://www.aditya-mukherjee.com The Last Word (beta)]&lt;/div&gt;</description>
			<pubDate>Wed, 17 Jan 2007 09:07:29 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/User_talk:Adityavm</comments>		</item>
		<item>
			<title>Request Hacks</title>
			<link>http://72.14.177.54/Bloggerhacks/Request_Hacks</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;/* Specify the Number of Labels Displayed */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TopMenu}}&lt;br /&gt;
[[Category:User Editable Pages]]&lt;br /&gt;
&lt;br /&gt;
Looking for a section that used to be here?  Solved hacks are moved to the [[Request Hacks/Solved|Solved Requests]] page, along with links to the solutions.  Feel free to move your own requests there when solved.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Do you want a particular feature for your blog? Are you pretty sure that it is possible? Add a new section to this page describing your requirements in detail and linking to examples, or to the site that you'd like to edit. I can't promise that your need will be met, but I hope to guarantee that it will be seen by people who can help.&lt;br /&gt;
&lt;br /&gt;
To help the community to understand what you're looking for, please include:&lt;br /&gt;
&lt;br /&gt;
# A full description of the feature that you're looking for.&lt;br /&gt;
# An explanation of the purpose.&lt;br /&gt;
# A link to your blog, or to any other resources / examples that you want to use.&lt;br /&gt;
&lt;br /&gt;
The more detail you are able to provide, the more likely it is that another user will be able to assist you.&lt;br /&gt;
&lt;br /&gt;
==Undiscussed Requests==&lt;br /&gt;
&lt;br /&gt;
===Cookies for peek-a-boo===&lt;br /&gt;
Remember the state of peek-a-boo comments in a cookie and maintain that state when the visitor next comes.  Doable, but probably take a bit.  Suggested at http://singpolyma-tech.blogspot.com/2006/10/comments-on-mainarchive-page-peek-boo.html#c116591239141648939&lt;br /&gt;
&lt;br /&gt;
===Hide Posts From Homepage And Archive Pages===&lt;br /&gt;
&lt;br /&gt;
I want to hide certain posts from the home page and the archive pages, but I still want to show the post on its own page. Eg:&lt;br /&gt;
&lt;br /&gt;
Hide Post: MYBLOG.blogspot.com/&lt;br /&gt;
&lt;br /&gt;
Hide Post: MYBLOG.blogspot.com/2007_01_01_archive.html&lt;br /&gt;
&lt;br /&gt;
Show Post: MYBLOG.blogspot.com/2007/01/POSTNAME.html&lt;br /&gt;
&lt;br /&gt;
Also, I'd like to hide these certain posts from the RSS/Atom feed.&lt;br /&gt;
&lt;br /&gt;
I don't know very much about how Blogger's special template markup works, but I saw some stuff that looks like it is possible to do if/then logic.&lt;br /&gt;
&lt;br /&gt;
Maybe have if/then logic saying&lt;br /&gt;
&lt;br /&gt;
    if on home page&lt;br /&gt;
        if post has label [name of hidden label]&lt;br /&gt;
            then don't show post&lt;br /&gt;
&lt;br /&gt;
I think that may be possible but I'm not sure just how.&lt;br /&gt;
&lt;br /&gt;
===Have The Last Word===&lt;br /&gt;
As a blogger, I welcome a large number of comments on my controversial posts. Being opinionated, I like to have the last word too. While I monitor discussions, keeping track of whether or not each post is &amp;quot;open&amp;quot; (ie I haven't had the final say) is difficult. &lt;br /&gt;
&lt;br /&gt;
I'd like a tool that will provide me with a list of my posts that have comments where the last one wasn't written by me, along with the contents of the last comment and a link to the appropriate comment editing page for that post.&lt;br /&gt;
&lt;br /&gt;
I imagine I could go to a page, enter a URL and my blogger name, then click a button. The results page would consist of a list of links and comments. Dates might be nice too. It wouldn't need to be integrated into my blog, be very stylish or even reliable, since it's just a tool I could check periodically when feeling bored.&lt;br /&gt;
&lt;br /&gt;
It might have an option to show only posts where I have commented but I am ''not'' the last commenter. This would be handy for blogs that I don't own, but comment on frequently.&lt;br /&gt;
&lt;br /&gt;
The building blocks for such a solution might include:&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;My comments blog&amp;quot; (HTML) via [[Comment Feed Using Another Blog]]&lt;br /&gt;
* &amp;quot;My comments feed&amp;quot; (RSS) via above&lt;br /&gt;
* [http://www.ts0.com/bloggercomments/ Thom's] [[Comment Feed using remote parser]]&lt;br /&gt;
* [http://www.anniyalogam.com/scripts/browser.php Ramani's] [[Archive Browser]]&lt;br /&gt;
* [http://anniyalogam.com/blog/2006/06/29/one-click-notification/ Ramani's] [[One-click Notification]]&lt;br /&gt;
&lt;br /&gt;
Any takers?&lt;br /&gt;
&lt;br /&gt;
-Greg.&lt;br /&gt;
&lt;br /&gt;
* Aren't we talking something like [http://cocomment.com coComment] or [http://co.mments.com co.mments], etc? -- [[User:Singpolyma|Singpolyma]] 09:21, 7 November 2006 (EST)&lt;br /&gt;
&lt;br /&gt;
===Hide sidebar previous posts on some recent posts===&lt;br /&gt;
'''Description:'''&lt;br /&gt;
As I use the Blogger navigation in my sidebar myself a lot, so I have added the 'previous' Blogger template code to the main archive and both a 'previous' and 'recent'(using Social bookmarks javascript linkroll) section to item pages sidebars so I'm sure I can access all my posts easily.&lt;br /&gt;
&lt;br /&gt;
'''Problem:'''&lt;br /&gt;
This works fine on old posts but on the first newer posts (item pages) they both show nearly the same links, so I would like to hide the 'recent' sidebar block, on say, the the first 3 new posts.&lt;br /&gt;
&lt;br /&gt;
'''Link:''' &lt;br /&gt;
The [http://3spots.blogspot.com/ blog in question].   &lt;br /&gt;
&lt;br /&gt;
Any idea how I could do that? &lt;br /&gt;
&lt;br /&gt;
Thanks, it's a great idea this wiki!  [[User:Ycc2106|Ycc2106]] 07:04, 24 July 2006 (EDT)&lt;br /&gt;
&lt;br /&gt;
===Merge blogs===&lt;br /&gt;
Basically, I have 6 personal blogs on my Blogger dashboard. That's because I wanted categorization before Blogger Beta introduced labels. For a number of reasons, I want to merge my blogs into one. If there is a way to import all the posts from one blog into another, that would be an ideal solution. Please advise or create a hack to do this, thanks in advance. My blog is here at [http://www.shan.ca.tf www.Shan.ca.tf]&lt;br /&gt;
&lt;br /&gt;
===Blogsend: No Linkback to Main Blog===&lt;br /&gt;
I have a [http://usurpingivy.blogspot.com Blogger Blog] that I've been updating since the Dawn of time, but my friends are all on LiveJournal.  Using the Blogsend function, I'm able to update the [http://usurpingivylj.livejournal.com LiveJournal] without actually ever stepping foot on LJ, BUT the issue becomes that BlogSend automatically adds a footer with a linkback to the main Blog.  I need to figure out a way to circumvent that, for privacy reasons on my main blog and to protect my guestbloggers.  Any ideas?  Thanks!!&lt;br /&gt;
&lt;br /&gt;
===Tag Hack for Qumana ===&lt;br /&gt;
I want to use Qumana for my post editing for Blogger. It works much better with Blogger than Performancing. But I want to change the tagging option from Technocratii to RawSugar (as exists with the great BlogThis/Tag hack.)&lt;br /&gt;
&lt;br /&gt;
My guess it's a simple business of changing the urlsoemnwhere in the Qunama script. Where? How?&lt;br /&gt;
&lt;br /&gt;
===Way to Add The Digg Button To a Beta Blogger Blog Hack===&lt;br /&gt;
This [http://diggbutton.blogspot.com/ tutorial] for the digg button for a blogger blog doesn't work in the new beta blogger. I would appreciate it if someone made a digg button code for the new beta blogger. If you'd liek to know what kind of template I use, if that will help you, check [http://allaboutadsense.blogspot.com/ All About Google Adsense].Thank You in advance.&lt;br /&gt;
&lt;br /&gt;
===Specify the Number of Labels Displayed===&lt;br /&gt;
I recently switched to Blogger Beta and have edited all my posts to remove technorati tags and add labels.  This, however, generated a very long list of labels in my sidebar.  I would like to be able to specify how many labels I want displayed, such as the top ten for instance.&lt;br /&gt;
&lt;br /&gt;
I have looked at Hackosphere, phydeaux3, and Hoctor's Place.  All of the code there, however, does a lot more than I need.  So I was hoping there would be a simpler hack for this.&lt;br /&gt;
&lt;br /&gt;
My blog is located at http://mentisworks.blogspot.com, and thank you very much in advance!&lt;br /&gt;
&lt;br /&gt;
* The inbuilt Labels widget in Blogger has an option to limit the number of labels being displayed. Is that what you're looking for? --[[User:Adityavm|Aditya]] 04:04, 17 January 2007 (EST)&lt;br /&gt;
&lt;br /&gt;
===Archives: drop-down menu with titles===&lt;br /&gt;
I can't find a way to make the blogger(beta) drop-down menu show titles of the post, instead of the date. I think it'd be extremely helpful, especially for blogs which are not updated very often.&lt;br /&gt;
&lt;br /&gt;
Or maybe do you have an idea how to make this a stand-alone widget? Probably using the site's feed?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Chronological order of posts (Blogger/Blogspot)===&lt;br /&gt;
&lt;br /&gt;
Hello together,&lt;br /&gt;
&lt;br /&gt;
first off i'd like thank everybody who has put his/her effort into this wiki in order to have a platform for hacks and new ideas...&lt;br /&gt;
&lt;br /&gt;
Ever since i started blogging i wanted to have the possibility to reverse the order in which the posts appear on my blog's mainpage. And please don't get me wrong, I'm well aware of the very nature of a blog and therefore having all the new stuff on top. &lt;br /&gt;
&lt;br /&gt;
BUT: I'm running a team blog with a handful of friends and we're often posting stories in sequence or referencing things that one of our members was writing in the past...&lt;br /&gt;
&lt;br /&gt;
So the problem is, when one hasn't checked in to read the latest stories for quite a while, he looses the context and must read the older posts first to understand the current ones.&lt;br /&gt;
&lt;br /&gt;
Before we migrated to the new version of Blogger we had a solution based on this hack: [http://www.inventric.com/blog/2004/12/change-order-of-blogger-posts.html]&lt;br /&gt;
&lt;br /&gt;
A quick look into the new widget-model and XML-stuff of the new Blogger system revealed the total incompatibility of this hack.&lt;br /&gt;
&lt;br /&gt;
'''So the question is, does anybody know how to realise this along with the new Blogger or at least know how the looping of the posts inside that post widget works?'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Comments on archive pages (Blogger/Blogspot)===&lt;br /&gt;
Hello together,&lt;br /&gt;
&lt;br /&gt;
Is there a way to sort comments on archive pages with the newest one on top?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Discussed Requests==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Want to have differnt pages for main page and post pages===&lt;br /&gt;
Am using blogger classic right now. I want to have a diffent page for the main page of my blog and some other page for the inner pages ( the post pages of my blog). &lt;br /&gt;
Actually i dont want to display any adsense ad on the main page. I want ads to appear when some one reads my post page or archive page.&lt;br /&gt;
&lt;br /&gt;
Example: Digital Inspiratiaon[http://labnol.blogspot.com]&lt;br /&gt;
In this blog there are no ads in the main page. But when you click the post tile,the post opens and there are ads in the post.&lt;br /&gt;
&lt;br /&gt;
Please help me.&lt;br /&gt;
My blog is Technical Bliss[http://technicalbliss.blogspot.com]&lt;br /&gt;
I must remind you again that am using the old blogger.&lt;br /&gt;
If someone can help me, just leave a msg on my blog. I will be highly thankful.&lt;br /&gt;
&lt;br /&gt;
* This has been done (not sure if it's in a way that works for the old Blogger, but I'll check).  I'll try to find it for you.  Please realise, however, that if I cannot find it you are not likely to find someone willing to create hacks for the old Blogger -- we've all moved ;)&lt;br /&gt;
&lt;br /&gt;
===fixed blog index page (kind of a blog home page)  ===&lt;br /&gt;
'''Description:'''&lt;br /&gt;
i'm trying to make a blog for my phd research and i want to make it like a webpage but with the perks of the blogger. so i'd like to have a fixed intro page with a description of my research and then use the labels to divide the blog into relevant areas similar to a webpage. right now i've added the tab label hack from hackosphere. &lt;br /&gt;
&lt;br /&gt;
'''Problem:'''&lt;br /&gt;
i just need a simple way to have one post permanently displayed when someone loads the blog and then they can click on the labels/tabs to see the rest of the blog like a webpage. &lt;br /&gt;
&lt;br /&gt;
'''Link:''' &lt;br /&gt;
The [http://mmwiseresearch.blogspot.com/ blog in question].   &lt;br /&gt;
&lt;br /&gt;
thanks&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Solution'''&lt;br /&gt;
&lt;br /&gt;
at least a possible solution.... Check out [http://blogfresh.blogspot.com/2006/08/expand-collapse-categories-with.html Caramuel's category hack]. This hack allows you to categorise your content, but also allows you to force the display of a given category when your main page loads.... So, put your intro / sticky post in its own category, then force that category to load as the default....&lt;br /&gt;
&lt;br /&gt;
===Hide the labels field from the main page and post pages===&lt;br /&gt;
Labels are nice and all, but they take too much space off the main page and post pages. I still want to label my posts, but I don't want to display them after each post...&lt;br /&gt;
&lt;br /&gt;
'''Solution'''&lt;br /&gt;
&lt;br /&gt;
A possible solution courtesy of [http://basangpanaginip.blogspot.com/2006/09/how-to-fix-comment-count-grammar-in.html Michael] and [http://hoctro.blogspot.com/2006/09/tweaking-new-blogger-feeds-on-front.html Hoctro], both of whom have played with Blogger Beta's new &amp;quot;if / then&amp;quot; logic to create the conditional display of content on certain kinds of page. I'd recommend that you leave your labels on your post pages, so that readers can see how you've categorised a post, &amp;amp; follow the link to a category that they're interested in,... but hey, it's your blog! This will probably work w/ minimal customisation.&lt;br /&gt;
&lt;br /&gt;
===Want Visitors List at bottom of each post, in Blogger Beta===&lt;br /&gt;
I'd like to have a list, at the end of each post, that gives the name of all the people who left a comment, and links that name to the website URL they left in the comment form.  You can see what I mean here: http://wystful1.blogspot.com/&lt;br /&gt;
At the end of each post is a 'Visitors List'.&lt;br /&gt;
&lt;br /&gt;
Can someone tell me how to implement this for Blogger Beta?  Thanks.&lt;br /&gt;
&lt;br /&gt;
http://caylynn.blogspot.com&lt;br /&gt;
&lt;br /&gt;
* Commentor names / links to their comments would be entirely possible modding [http://singpolyma-tech.blogspot.com/2006/10/comments-on-mainarchive-page-peek-boo.html my peek-a-boo hack], commentor URL would require hugely more scraping (and may not be possible at all).  If anyone finds a way please let me know, though, it would be nice in my hack! - [[User:Singpolyma|Singpolyma]] 09:39, 7 November 2006 (EST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==[[Request Hacks/Solved|Solved Requests]]==&lt;/div&gt;</description>
			<pubDate>Wed, 17 Jan 2007 09:04:52 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Request_Hacks</comments>		</item>
		<item>
			<title>Blogger Stickies</title>
			<link>http://72.14.177.54/Bloggerhacks/Blogger_Stickies</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Author==&lt;br /&gt;
[http://aditya-mukherjee.com Aditya Mukherjee]&lt;br /&gt;
&lt;br /&gt;
==Homepage==&lt;br /&gt;
http://lastword.blogspot.com/2006/12/blogger-post-notes.html&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Adds a sticky type text box to the post editor which can be used to maintain notes about a post. It remains persistent through saving and publishing the post, so your notes will always show up.&lt;br /&gt;
&lt;br /&gt;
==Method== &lt;br /&gt;
Install a greasemonkey script from the page linked to above.&lt;/div&gt;</description>
			<pubDate>Wed, 17 Jan 2007 09:00:58 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Blogger_Stickies</comments>		</item>
		<item>
			<title>Keep current date and time on posts</title>
			<link>http://72.14.177.54/Bloggerhacks/Keep_current_date_and_time_on_posts</link>
			<description>&lt;p&gt;Adityavm:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Platform==&lt;br /&gt;
New Blogger&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
[http://aditya-mukherjee.com Aditya Mukherjee]&lt;br /&gt;
&lt;br /&gt;
==Homepage==&lt;br /&gt;
[http://lastword.blogspot.com/2006/12/keep-current-datetime-on-posts.html Keep current date/time on posts]&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Is effectively a port of Jasper's Greasemonkey script which did the same thing, to the new Blogger since his broke with the upgrade.&lt;br /&gt;
&lt;br /&gt;
==Method==&lt;br /&gt;
Install a Greasemonkey script from the home page linked.&lt;/div&gt;</description>
			<pubDate>Wed, 17 Jan 2007 08:57:54 GMT</pubDate>			<dc:creator>Adityavm</dc:creator>			<comments>http://72.14.177.54/Bloggerhacks/Talk:Keep_current_date_and_time_on_posts</comments>		</item>
	</channel>
</rss>