Blogger Categories with Del.icio.us Part One
This is the first post in a series on using del.icio.us to create categories for Blogger. This is by no means the only method to 'fake' categories with Blogger, nor am I claiming it to be better than any other. It's just the means I'm using and if anyone else wants to use the same thing then feel free to. The method is just a collection of script ideas from del.icio.us modified a bit and template tweaks to get what I wanted out of Blogger. I've broken everything into 3 posts to try and (hopefully) make it easier to use all or if needed only parts of what I'm doing to suit your needs.
This came about because I didn't see any methods that gave me all of the features that I wanted, but knew it was doable with del.icio.us. Some of the features are specifying the category a post is in (rather than using some method of search), keeping it self contained inside the blog (no links go out to another site, they all stay in house), it uses the creation of only one "category" post, and the scripts take care of directing them appropiately (you don't have to make multiple pages when adding a new category, the scripts do it all) and the ability to modify all the information with CSS. If you think this might be appropiate for your needs I should say before starting that although nothing here is super-complicated (I don't think) you should at least have a feel for modifying your Blogger template and know where all the bits and pieces go. If you're a complete newbie, then I'm not sure how easy this would be to setup and possibly another method would be better suited. If you have at least a basic knowledge of Blogger and how it works, then it shouldn't be too hard.
Step #1 - Back Up Your Template. You should make a backup before doing any modifications in case a mistake is made or you just want to revert back to what you had originally.
Step #2 - Get an account with del.icio.us . I'm not going to cover using del.icio.us as their help files and other spots cover that well enough. You just need an account and to note your USERNAME as we'll need it shortly.
Step #3 - Login to Blogger and create a "Category" post. This will be the post that displays the selected "category" and as such it has some special needs. First you should probably give it a title of Categories: . Next, click on the 'Post and Comment Options' link to open up the options field. You'll probably want to set "Allow New Comments" on this post and "Allow New Backlinks" to NO, since this is a special post and those features probably aren't wanted. Next backdate the post to way before you started blogging. This gets the post a bit out of the way and into it's own archive. I would recommend putting a date of Jan 1 2001 as the date. If you're thinking you don't want a post showing from that time period don't worry, that part is covered in a bit. Now just copy and paste the code below into the posting window without any alterations. I know it looks very messy but it has to be formatted that way for users that have convert line breaks on, and as such everything is entered without any carriage returns. Don't muck with it, as any added spaces or anything could screw the pooch. Just copy and paste as is. NOTHING in this code needs to be modified. After you've pasted the code go ahead and "Publish" and you'll receive an error message saying "Tag is not Allowed". No worries. Just check the box next to "Stop showing errors for this post" then publish again and it will go through.
<script type="text/javascript">selURL = decodeURIComponent(document.location);selected = selURL.split('?');if (selected[1])if (selected[1] == 'delAllPosts'){selected[1] = '';}{enTag = encodeURIComponent(selected[1]);document.write('<scr'+'ipt type="text/javascript" src="http://del.icio.us/feeds/json/'+delUserName+'/'+enTag+'?count=100;"><\/scr'+'ipt>');var strip = selected[1].replace(/_/g,' ');if(strip ==''){strip = 'All Posts';}if(document.getElementById('delpost-title')){document.getElementById('delpost-title').innerHTML = 'Category: '+strip;document.getElementById('delpost-date').style.display = 'none';}}</script>
<script type="text/javascript">var ul = document.createElement('ul'); ul.className='delicious-posts';for (var i=0, post; post = Delicious.posts[i];i++){ var li = document.createElement('li');li.className='delTitle';var a = document.createElement('a');a.setAttribute('href',post.u); a.appendChild(document.createTextNode(post.d));li.appendChild(a); ul.appendChild(li);if(delShowNotes){if(post.n){var liNote = document.createElement('li');liNote.className = 'delNote'; liNote.innerHTML = post.n;liNote.innerHTML += delNoteAppend; ul.appendChild(liNote);}}if(delShowTags){var li2=document.createElement('li'); li2.className='small-del-tags';for (p in post.t){var tags = post.t[p]; strip = tags.split(',');if( p > 0){li2.innerHTML += delSep;}for(r in strip){ stripper=strip[r].replace(/_/g,' ');var a2 = document.createElement('a'); a2.className = 'small-del-link';a2.setAttribute('href', delTagPost+'?'+strip[r]); a2.appendChild(document.createTextNode(stripper)); li2.appendChild(a2);}}ul.appendChild(li2);}}document.getElementById('del-container').appendChild(ul);</script>
Step #4 - Now you need to get the URL of the Category post you just created and the URL of the Archive it is in (it should be in an archive by itself if you followed my advice on the dating). Easies thing to do is go to your blog and in your archive list you should have the new one for Jan 2001(or whatever format your archives are in). Go to that page and either copy the url or keep the window open and open another window with the category post you made, copying the URL or keeping the window open. Now go to your template and there are two bits that need to be added there for now. The first bit of code below needs to be copied and pasted into the head of the template (between the <head></head> tags).
// Delicious tag variables
var delTagPost = 'YourCategoryPostURL';
var delArchivePost = 'YourCategoryArchiveURL';
var delUserName ='YourDeliciousUSERNAME';
var delShowTags = true;
var delShowNotes = true;
var delNoteAppend = '';
var delSep = ', ';
</script>
Three things need to be modified for your use. For delTagPost you need to copy/paste the URL of the category post you made. Be sure to keep it inside the single quote marks. Same thing with delArchivePost, grab the archive URL that only the category post is in (for Jan 2001 if you followed my advice) and copy/paste it here. Last in delUserName you should enter in your del.icio.us username, again keeping it inside the single quote marks. The other variables can be changed but not now. I'll cover their uses in one of the other parts of the series.
Next, in your sidebar section (or wherever you want the listing of 'categories' to appear) copy and paste the code below.
Update : Code for using a "Category Cloud" in place of or in addition to the following code now available at the post Tag Cloud 9Code for using a Drop Down Menu in place of the following code now available at the post Drop Down Menu For Categories
<div id="delicious"><noscript>Javascript must be enabled for Categories</noscript> </div>
<script type="text/javascript" src="http://del.icio.us/feeds/json/tags/XXXXXXX"></script>
<script type="text/javascript">
var ul = document.createElement('ul');
for (p in Delicious.tags){
tagURL =encodeURIComponent(p);
var strip = p.replace(/_/g,' ');
var li = document.createElement('li');
var a= document.createElement('a');
a.href=delTagPost+'?'+tagURL;
a.title='View all posts filed in '+strip;
a.appendChild(document.createTextNode(strip+' ('+Delicious.tags[p]+')'));
li.appendChild(a);
ul.appendChild(li);
}
document.getElementById('delicious').appendChild(ul);
</script>
The only thing that needs to be modified here is the line
Where XXXXXXXX you again put in your del.icio.us username (don't knock out the trailing " mark here).
Now save the template changes and "Republish the entire Blog". If you go to your blog now it should look the same except for a category heading where you placed it. It won't show anything now (unless you have previously tagged posts) since you haven't tagged anything yet. That's the next step. Go ahead and take a couple of posts to test and tag them on del.icio.us . Do a few for testing then come back and take a look at your blog. You may have to reload the blog out of cache, but you should start seeing a listing of any tags you've added if we've done everything right. If you click on a category listing, it should take you to the 'category post' page and it should display a link with title to the post tagged, the tags used on it and if any notes were added they will show up too.
Don't worry if the information isn't quite formatted the way you want, that can be tweaked with some of the variable settings and with CSS. I'll cover that and a few other things in the next post. If nothing is working, make sure you republished the entire blog, make sure you filled in all the bits I told you with the correct information, make sure you're not pulling an old page out of cache. If you followed all the steps it should be working. If everything is GO then you can move on to the next post, if not you're gonna have to figure out where things went wrong before trying anything else, if this doesn't work nothing else I will talk about won't be helpful.
Post a Comment
58 comments:
Hey thanks for posting these instructions. Just started blogging, but already am frustrated that I can't categorize anything in Blogger. I followed all the way through your first post, and think I did everything right, but only the category head shows up. I set links for the first 2 posts. Any idea where I might have gone wrong?
http://things-that-suck.blogspot.com/
Thanks for any insight
Yep I see what's wrong, small but critical error...add ' marks to the things that suck..heh.
Ok, in the head of your template where you have the script variables setup, first thing you have that section marked off with
/* Categories
----------------------- */
That way of commenting code only is valid INSIDE of a stylesheet (between the style tags)..yeah I know.
Better to make that
<!-- Categories -->
Is the proper comment syntax there.
But the real issue is here...
var delArchivePost = http://things --
I chopped off the end of that..but it's missing the opening ' mark after the = and before http.
The whole url needs to be inside ' marks.
Do that. Save. Republish the entire blog. May have to clear your browser's cache to make sure it's getting the newly pub pages but I think she should start working then. Lemme know if it works out. Nice blog too.
Thanks, just found the missing bugger myself. Seems to work now. I had taken out that categories comment line too. I'm a real hack at coding, so I just copied what they had done in the tempate elsewhere.
Thanks, glad you like my blog.
I am a pure nexbie in bloggin stuff not to mention HTML, javascript etc.
I tried to follow the instructions, and got so far that I now have the Categories hading in the place that I want - I just don't understand how I am supposed to "tag a post" into the "thing" ...:/
I don't know if you will understand what I mean, but i really hope so :)
Thank you :)
rachelle,
The complete steps for tagging are covered in Part Two.
Right now I think you've only finished Part One, and at that point you have to tag the post directly at delicious. Might be helpful to do that to verify everything is working. If you're not familiar with delicious..this page has the tools needed to "tag" a post.
http://del.icio.us/help/buttons
If everything is working then, you may or may not want to continue to the other parts, they make it a little bit easier to "tag" the post..but require a bit more setup.
I think I said at the beginning this might not be the best thing for someone new to HTML, since it is very involved. But I like it when people try new things. :-D
Hopefully after seeing how you tag it at del.icio.us, it will help you decide whether to go on to the steps at Part two. Part two and three aren't really necessary to get the basic functionality out of it, only if you want it all.
If you run into any more problems, I'll be glad to help if I can.
Great tutorial. I've looked all over for a way to add categories to Blogger and most approaches were not well explained or incomplete. You did a great job putting all together and detailing our the steps. I've modified your code a bit to have my categories in a pulldown menu on the sidebar of my blog. Take a look at: oracledmt.blogspot.com.
For those interested, look at the page source and search for new Option('- Categories -','/'). It is that bit of code.
thank you so much for this. your tutorial and end results impressed me so much, i've built up 2 new personal sites centered around your coding at blogspot (well, one of them is really just a test for now). i'll be forgoing wordpress.com, now that blogger's categories issues have been 'resolved'!
http://billkillers.blogspot.com/
http://ergwork.blogspot.com/
cosmik debris? phydeaux (fido)? an hommage to uncle frank (zappa)? i might have known..
谢谢 !
Thanks Marcos and Marc. Glad it was helpful. I was afraid it was a bit too much..glad to see it's helping out others.
Nice implementation from both..looks great. Glad you worked up the dropdown code Marcos, saves me from having to..I'll just point any interested parties your way. :-)
And yes Marc, homeage to the genius of Uncle Frank. Poodles may make an appearance at any time now. :-D
Thanks, Phydeaux, for the heads-up on the double-scripting in my categories post. I'm notoriously bad at following the links on my own page, so I have no idea how long it would have taken me to spot that (but likely not until I get around to getting the final template up and running).
And a tip of the hat, also, from another Zappa fan...
the poodle bites!
just curious, does anyone know where pix uploaded to blogger go and if we can view/organise the lot?
Marc,
Photos uploaded to blogger go into the black hole. There is no "list" of photos to see what you've uploaded, you can not delete photos. There is no way to keep track of them. Yes I agree. One of the reasons I started using Flickr. Blogger is easy post and go, but if you want to keep track,organize or otherwise deal with them it's not available as of now. Also photos on blogger are unavailable outside of the .blogspot.com domain. Meaning they can't be used on other websites or if someday you get your own domain.
once again, much obliged for the head's up.. flickr it is then. won't even touch on the politics of why this indeed a black hole.
(slippin' a tip of the hat to yuz on my site)
Hi there…since we are on the topic of pictures…is there a way we can hack flickr or even photobucket so that the pictures we post there can be organized in blogger, let’s say to post randomly, but not on a side bar, something like on an item page, just like how our categories show up on the main page?
Glad you liked the dropdown implementation. I created a link to your instructions in my post. This way those interested in learning how to do it can benefit from your great directions.
Okay, oracle data mining can be a bit on the esoteric side :-) We have been working hard at making it so simple that anyone can use it without any specialized know-how. It should become as simple as querying a table. I will have some posts on that in the future.
I'm also a newbie - but I'm always open to a sense of adventure. I'm using this blog as a place to test some of these things out. I thought I did everything correctly and got to display the categories on my blog. Unfortunately, when I click on the category to access the articles, I get a message saying that the post I was looking for was not found. I can see the posts in del.icio.us. Any help you could provide would be much appreciated. My blogs address is http://rickandlindon.blogspot.com/
Thanks
Hey Lindon,
Yeah, in the area where you setup the script variables, you got the wrong url in there somehow.
// Delicious tag variables
var delTagPost = 'http://www.blogger.com/post-edit.g?blogID=20913244&postID=114010920698908299';
Should most likely be
var delTagPost = 'http://rickandlindon.blogspot.com/2001/01/categories.html';
Try that and republish the entire blog. It should get it pointed at the correct page then
It worked. Thanks a lot. One other small matter and it has to do with the hiding of the Category post. It still shows (thought the Archive one is hidden).
Thanks
Rick
Rick, did you fix it?? Because the category post is hidden in the "recent post" lists from what I'm seeing right now. Or I'm misinterpreting the question.
I guess I did :-) This is very cool. BTW, did you ever write the script for hiding the 2001 Archive when using the drop down menu? I've been considering adding this feature. Your previous tutorial said you would get around to it and I was just wondering. Thanks again for your great work and your prompt responses to my questions. I really appreciate it.
For Anne: I use Flickr and Fotoflix for image hosting. I've tried PhotoBucket but didn't like it. I think Fotoflix is the best. It uploads faster and easier than Flickr, it lets you have unlimited numbers of images (Flickr allows you to have only 200 showing using the free account, although if you have more it doesn't delete them, it just doesn't show them, which means you have them there but you can't access them), and overall functionality is better.
For Phydeaux: I'm going to try your categories scripts this weekend to repace my band-aid solution I curretly use at:
http://thebloggingblogger.blogspot.com
My "Index" is tied to identically-titled posts, which you can see by viewing my source.
Another "hats off" to the genius behind the Mothers of Invention!
I have implemented up to part two. Love how it looks and really appreciate what you've done here. Can't thank you enough.
I am a newbie too and woul like to ask you one little thing. When I go to click the categories and the categories post I made shows up, I get the titles of the posts within that category as well as the categories of that post (tags) below it. How can I make the first look bigger? It might be a dumb question but would appreciate any help
Hey Horus,
Looks good, and not a dumb question. You can do that with CSS entries. The complete list of all the different classes are near the end of part two. But for an example to get what you want you could put this in the stylesheet(between the style tags) of your template.
ul.delicious-posts {list-style:none;}
.delTitle {font-size:140%;}
The first line gets rid of the 'bullets' next to each entry. You may or may not want that.
The second increases the font size of the displayed title...you could go larger if you want.
Every entry can be styled with css. That may be enough for you..like I said the complete list of classes for each segment is at the end of part two.
Hope this helps.
Thank you very much, worked well. I appreciate your help. I might even work a little harder to post to my blog.
Thanks again!!
phydeaux3,
Question for you. I've been able to categorize my posts great except for my last one. I don't get a link to del.icio.us so I can't tag it there. Any ideas why? Suggestions? My blog address is http://xtraordinaryliving.blogspot.com
Thanks
Rick
Rick,
It looks like the problem might be the title of the post having " marks in it.
"Senior moments"- you just never know!
Looks like that is throwing the script off. I probably shoulda put some checking for that in there, but never thought of it.
Try retitling the post without the " marks and republish. Single quotes would probably work..such as
'Senior moments' or do without em. One of the things I'll mark down to correct for if I ever redo the scripts.
Try that out, I'm pretty sure that's the issue.
I took the quotation marks off and it worked. Once again, I really appreciate your help and prompt response.
I have no idea what I'm doing wrong. I've gone through these instructions twice and my category page won't pull up any of the title's. It's blank. All I get is a blank page! I just don't get it.
Oops, my page:
http://jrharper.blogspot.com/
ZoobieWa
Hmm. I'm not quite sure what is wrong either. It seems to work in Firefox, but doesn't in IE nor Opera.
It looks like everything is setup ok, the only thing I can think of offhand is that somewhere the scripts are conflicting with something else on your page. IE gives pretty shitty error messages to try and track down these things.
I don't have much time to look into it deeper now, if you leave it up until tomorrow night I'll try to take another look to see if I can locate where the problem might be.
It appears you've followed the instructions correctly so no need to go over those again. This is the first time I've seen it conflict with something, maybe we will be able to sort it.
ZoobieWa
Ok, I took another look.
First thing, I didn't notice this the first time I looked, but there is one error in the setup.
The very first script that is to go inside a post, well it's there, but it's there 3 times. This isn't what is keeping it from working in IE, but it's making it show the list 3 times in Firefox.
Edit that post and delete what you have and recopy/paste the first script from part one in there again so it's only there once.
Now as far as it not working in IE, I'm a little stumped. I looked at your page and you are using a script to give the show/hide stuff on your posts. I suspected that somewhere there might be a conflict with that, so I took a copy of your page and loaded it into a test blog exactly as you have it. Worked in Firefox. Nothing in IE.
So I took out that script that does the show/hide and republished and it works then in both IE and Firefox.
So I'm not sure where the conflict is, but apparently the two scripts don't play well with each other. Don't know which is the problem. I took a look at the other one but the error message IE gives is so non-helpful as to be worthless, and can't see what the conflict might be. So that's about as far as I can go with it, I guess it's up to you to either find the conflict or decide which script you want to use.
Sorry I couldn't be more help.
Wow, thank you so much for taking the time to look. I'm going to try and figure out something with the show/hide script. I suspected something with that.
hi there,
thanks a lot for your script. i'm trying to put it up on my playground at the moment before putting it on the real thing, one thing though, i've been using delicious already, so i already have several bookmarks there. the problem is now i can't start with a fresh category. is there anyway at all to get around this and just to display the bookmarks from the local blog?
also the list appear with bullets on each line, and i don't really wanna show the tag, just the title and note, anyway to do that?
http://treetemplategame.blogspot.com/2001/01/category.html?links
thanks!
treespotter,
I think you sorted most of these out yourself and on your other questions
Hola - Thank you for this! I'm terribly new at this but I got it all working. Your instructions are excellent.
Here's my problem: when I click on a category, it takes me to the new category page but only the headlines show up and they are scrunched together. I tried to read the solution in the first comment here but couldn't make heads nor tails of it... Can you help even me?
http://abroadincostarica.blogspot.com
Thanks!
Hola - I'm back! I finished page 2 and have a couple more questions. First, I changed my mind: I like the fact that on the Categories post page, a list of related articles show up and not the entire post. So that's ok. I made the post titles larger and darker as per your instructions to someone else up the page here - that worked great. I added bullets between the tags and '...' at the end of my notes. And yes, my head is spinning. Here are my questions:
1- Can I change the title of the post page from Categories to Articles in This Category or whatever?
2- I'd like to change the font that my notes are in... but could not find the .delnotes {} field. Is that in the html on the categories post? Or in my template somewhere? Couldn't find it, but I'm bleery-eyed by now.
3- last question: On the Categories post page with the list of articles, can I insert a return or two after the tags so there is space between each article on the list?
This is really fun. Like an intricate math problem - I love that. Thanks!
Figured out #1... still can't find the other two. Thank you!!!!
abroadincostarica.blogspot.com
Saratica,
Good job so far. Looks good. Glad you find it fun...hehe. Some people might call it something else. :-)
#2 It ain't there. You have to put it in the CSS yourself. So where you found the .delNote {} listing in Part Two is all the CSS classes that you can use. Most of the ones there are 'empty', meaning they won't do anything untill you fill them out. So it's safe to put all those in your css section (before the closing /style tag) then fill out the ones you need.
For the notes you can put any valid CSS declaration inside the .delNote class..so you can change the fonts/colors/size whatever.
For #3, you can add some spacing after the tags again with the CSS. For that bit it's the .small-del-tags class that does it. So here is a cheesy example that would change the notes font to Impact (most likely not what you want) and then puts in some bottom margin/padding and a border after the tags. Just to show you what you can do, of course you can use any CSS you want.
.delNote {
font-family:impact;
}
.small-del-tags{
margin-bottom:20px;
padding-bottom:20px;
border-bottom:1px dotted #ccc;
}
Great job! Only thing missing, links to Part 2 and 3. That will make this post complete. [link edited out by phydeaux3 since I don't see it's relevance]
enviroman,
the links are all around. Check the top of this post. Part two and three are there. Plus it's in the Blogger and del.icio.us categories.
I'm always so stunned when it works. Like magic!!! THANK YOU. On to page 3...
I've tried everything in the article twice and can not get it to work. I see my category listing in the sidebar but when I click on a category I get the Category page but there is no link on the page.
http://ffootballnews.blogspot.com/
Norm,
I'm not sure what is happening, but step#3 on this page isn't complete.
You got the 'category' post made, but I don't see the actual script published on that page. I do see the very first line from what should be pasted, but not the script itself.
Go back to edit that post, copy the code completely from step#3 and replace anything in that post with that code. Publish, it will give you an error saying tag is not allowed, check the box that says disable errors on this post and publish again and it should go through. Then check again. You MAY have to reload the category page out of your browsers cache to see the changes.
Once that script gets published inside the post, it should most likely work. I don't see anything else obviously wrong. Lemme know if it works out.
Great Post. One getting one wierd thing happening in my categories post. The tags are showing up on their own bulleted line under the post title. It makes it seem like they are their own titles.
Any ideas?
Saul,
That can be tweaked with the CSS for that page, I outlined the relevant classes on this section
Category CSS
Usually the list-style:none on the category ul will get rid of the bullets. Although I didn't see the cateogories on your blog linked in your profile, so maybe you are using on a different one. That's about as specific as I can get without seeing exactly what they are doing. I like the zulu blog tho, very cool.
Thanks! I removed things until I could get it settled.
Well...
I'd tried step-by-step, but till now, only the title 'Categories' appeared. I'm not sure which part did I do wrong. Could you please review my site. Well, it's a test site actually, so there's still nothing in it.
http://jesse-81.blogspot.com/
p/s : Did you think that I did something wrong whilst I'm tagging the post? I'm not so sure how to tag as well actually!!!
jesse,
Well the good news is you are tagging the posts at delicious ok. They are there fine.
The bad news...well just about everything else. Every step in this first part has errors.
Step#3 is creating the category post, now you've done that, and maybe you did it twice.
because in
Step#4 where you put in the url of the category post and it's archive, you have a url for a post made with a date of 1991, yet those posts aren't there, and there is a category post made with a date of 2001. I assume you made the earlier ones, then deleted them but didn't change the url's. BUT also, the category post from 2001 is COMPLETELY missing all of the code it's supposed to have entered in Step#3. All of that is bad.
And lastly, the second part of Step#4 (I really should have labeled it step#5 but apparently I forgot) is pasting the code in your sidebar for the categories to display, it isn't there. Instead you have it in the CSS portion of the template. Where you see the line
/* Sidebar Content
Well that's for the CSS for the sidebar, NOT where you put any html code for the sidebar. It's down further inside the body of the template.
So, pretty much everything is wrong. :-)
If you really want to give it another shot, since this is just a test I would delete that one completely and start over. There are a lot of steps, and if you are not used to editing your template it can be very easy to get lost. This really isn't the easiest 'hack' to get setup, although that's how you learn eh? If you give it another go and run into problems lemme know.
Hi Man!
Well... I did have the 'Categories' on my sidebar. The problem is when I click on the submenu under 'Categories', the post list doesn't show up. So, how can I fix this? Thanks for helping, by the way!
Jesse,
You didn't have the categories in the sidebar last night when I looked. :-)
It was in the css.
You got that right now, You got the urls for the category page corrected now.
But the reason the results don't show up on the category page is the same as I pointed out earlier...the category page does NOT contain the code it's supposed to. The code from Step #3 is NOT being published.
This is odd. A guy the other day was running into the same problem, and he said he was putting it in. But it wouldn't show up on his blog.
Just to test, I created a new test account and tried that code again, and it published correctly, so I'm not sure where the issue might be.
Go to step #3 again and get that code from there. All of it. Then goto edit that category post and replace what you have with that code. Publish it, it should give you an error saying tag is not allowed, then you check off the box that says stop reporting errors and publish again and it should go through. Then try reloading the category page out of cache and see if it shows up then. That's the only thing wrong now. That code has to be published in that post, and for whatever reason it isn't.
Lemme know if it works, or doesn't.
Okay...
It's working now I suppose.
Thanks!
Hi, I am looking forward to see the re-writings!
hi phydeaux3,
i have been searching on how to integrate tags in to my blog as categories for the longest time. your d2b is exactly what i have in mind only that like you, i am using technorati to tag my entries. how did you manage to came up with your categories on the sidebar? was that del.icio.us generated?
is it possible for me to have a cloud format category on my sidebar using t'rati or do i have to resort to double tagging?
thanks!
ymir-
I know of no way of getting a 'cloud' or other type from technorati tags only. You can get some things, like an RSS feed for the tags you know about, but not a list of tags or the easier to work with JSON feed.
That's why I went with delicious, since they provide a much more complete and easier framework.
And yes, I just 'double tag' things. In my mind I consider them two separate things, my delicious tags are targetted 'categories' (may only have one or two for each post) while I'm much more general with my technorati tags (shotgun approach)
If you use Firefox and have the greasemonkey extension installed, I should plug the Technorati tagger I had something to do with, which is explained completely by my partner-in-crime Improbulus.
Updated multiple word Technorati tag creator for Blogger (Firefox 1.5, Greasemonkey 0.6.4) with added features
phydeaux,
I could use your help with the following:
1) If you view my blog with IE, the information on the right hand column goes to the bottom of the page - this is not the case with Firefox. I would like to have this moved to the top of the page. Please advise.
Your help is much appreciated.
Warmest Regards,
Rick
You're my hero! I followed your instructions and things came out perfectly here @ starkravingblack.com! I'm going to try to switch to the drop down menu however, because I have too many categories.
Well glad you found it helpful. And it looks like you got quite a trip ahead of you. Good luck with it and have fun!
Hey , i did all that you said but i cant get it to work right. http://warezdownloads.blogspot.com , in fact i have no idea how to get this to work. I added all the code and created my account but im not sure how to add seperate catagorys and how the posts get added to the catagorys automatically?
alan-
The first thing at the top of this post is a notice that this is an old version, and you should see the new instructions.
The first thing at the top of THAT post is the notice that these no longer work in BETA.
You are on Beta. It has it's own categories (labels). Use them.
Post a Comment