Automatic List of Labels for Blogger Classic Templates / FTP
Since Blogger introduced labels, one of the pressing concerns for those publishing via FTP or those on blogspot who don't want to switch to a Layout based template was how to automatically list all the labels used on the blog in the sidebar. Blogger does not provide any template tags for this in Classic Templates (maybe they will at some point, but adding new features to Classic Templates probably isn't a high priority, if at all).
For FTP blogs, there are several different methods floating around to do it, most of which use PHP to parse the labels folder and then create the list from all the files in that folder. While this is fine (better than manually creating the list), it has a few drawbacks. One, if you are fussy, and create/delete/add labels, ones you have removed will not be deleted from the server and will thus still be listed. PHP isn't always the easiest thing for people to work with unless they know their way around it. And PHP is definitely not an option for those on blogspot who want to keep their Classic Template.
Well it just got a bit easier for most of these folks with the introduction of public Blogger metafeeds. What's a metafeed you ask? Don't ask. :-)
Ok, well Blogger does provide what they term a 'metafeed' for Blogger accounts, that lists all the blogs in that account. And in New Blogger (now known as Blogger) it also contains a list of all the labels used for that blog in that metafeed. But until now, the metafeeds have been only available if you authenticate into the feed (login) which put it out of reach of javascript. You could do it via PHP but it was a little more complicated as you have to sort through the Blogger authentication stuff (I had been doing this via PHP for the great humorlessbitch to build her ever growing list of labels for several months). Last week that changed, and now public blogs have access to a public metafeed (no authentication) that can easily be accessed via javascript.
Caveats - this only works for blogs that have their admin profile publicly available, and the blog must be publicly listed in that profile (this is as it should, if you haven't announced your blog publicly, then your metafeed shouldn't be public). It also does NOT return the number of posts in each label. Just the list of all the ones used.
Ok, you need two pieces of information for it to work. Your Blogger UserID number, and your Blogs ID number. Both of these you can get via your dashboard. For the USERID, click on the View Profile link and it's the long number at the end of that url. For the Blog ID number, again from the dashboard if you click on any links to change settings or create a post for that blog, all links will have blogID=XXXXXXX at the end where the X's will be that particular blog's ID number. Once you have that, here is code that will fetch and display the labels for your blog.
To configure it, near the bottom in the script change USERID to the user ID you found in your profile link. Then change BLOGID to the ID number you got for your blog. Then at the top, a couple of variables to set depending on whether you are publishing via FTP, or if you are on blogspot. The baseURL should be set to the path to the labels for your setup. If you are on blogspot, what is there now doesn't need to be changed. You only have to change this if you are on FTP, so just find the path to your labels folder and include it here (include the trailing slash). baseHeading is what header it will put above the labels, you can change that to anything you want. The last is the isFTP variable. If you are on blogspot, leave it to false. If you are publishing via FTP, change it to true (this just turns on the file extension in the script which blogspot labels don't use).
With that set, just put the code wherever you want it to display, and try 'er out. I should note, the meta feed doesn't return the label entries in any sort of order that I can tell, so the script above attempts to sort them alphabetically (the sorting will do labels with capitalized first letters, then ones with lowercase first letters).
If you need to style the list, here are the entries used by it for CSS.
#labelList {}
ul#label-list {text-align:justify}
ul#label-list li {display:inline;}
The sample above will give it a cloudy structure (not a true cloud as there is no weight given to the entries, but what the hell).
For a working example, see the bitch as she is now powered by the javascript version.(Update-the bitch is no longer powered by this as Zo moved to using a custom domain, so that link isn't relevant now. Visit her just the same.) And just for giggles, here's the list of labels that Improbulus has used so far in her fancy new domain (she was late to the labeling party, but she is slowly catching up).
For FTP blogs, there are several different methods floating around to do it, most of which use PHP to parse the labels folder and then create the list from all the files in that folder. While this is fine (better than manually creating the list), it has a few drawbacks. One, if you are fussy, and create/delete/add labels, ones you have removed will not be deleted from the server and will thus still be listed. PHP isn't always the easiest thing for people to work with unless they know their way around it. And PHP is definitely not an option for those on blogspot who want to keep their Classic Template.
Well it just got a bit easier for most of these folks with the introduction of public Blogger metafeeds. What's a metafeed you ask? Don't ask. :-)
Ok, well Blogger does provide what they term a 'metafeed' for Blogger accounts, that lists all the blogs in that account. And in New Blogger (now known as Blogger) it also contains a list of all the labels used for that blog in that metafeed. But until now, the metafeeds have been only available if you authenticate into the feed (login) which put it out of reach of javascript. You could do it via PHP but it was a little more complicated as you have to sort through the Blogger authentication stuff (I had been doing this via PHP for the great humorlessbitch to build her ever growing list of labels for several months). Last week that changed, and now public blogs have access to a public metafeed (no authentication) that can easily be accessed via javascript.
Caveats - this only works for blogs that have their admin profile publicly available, and the blog must be publicly listed in that profile (this is as it should, if you haven't announced your blog publicly, then your metafeed shouldn't be public). It also does NOT return the number of posts in each label. Just the list of all the ones used.
Ok, you need two pieces of information for it to work. Your Blogger UserID number, and your Blogs ID number. Both of these you can get via your dashboard. For the USERID, click on the View Profile link and it's the long number at the end of that url. For the Blog ID number, again from the dashboard if you click on any links to change settings or create a post for that blog, all links will have blogID=XXXXXXX at the end where the X's will be that particular blog's ID number. Once you have that, here is code that will fetch and display the labels for your blog.
<div id="labelList"></div>
<script type="text/javascript">
//<![CDATA[
function listLabels(root){
var baseURL = '/search/label/';
var baseHeading = "Labels";
var isFTP = false;
var llDiv = document.getElementById('labelList');
var entry = root.entry;
var h2 = document.createElement('h2');
h2.className = 'sidebar-title';
var h2t = document.createTextNode(baseHeading);
h2.appendChild(h2t);
llDiv.appendChild(h2);
var ul = document.createElement('ul');
ul.id = 'label-list';
var category = entry.category;
labelSort = new Array();
for(p in category){
labelSort[labelSort.length] = [category[p].term];
}
labelSort.sort();
for (var r=0; r < labelSort.length; r++){
var li = document.createElement('li');
var a = document.createElement('a');
if(isFTP){
a.href = baseURL + encodeURIComponent(labelSort[r])+'.html';
}
else {
a.href = baseURL + encodeURIComponent(labelSort[r]);
}
a.innerHTML = labelSort[r] + ' ';
li.appendChild(a);
ul.appendChild(li);
abnk = document.createTextNode(' ');
ul.appendChild(abnk);
}
llDiv.appendChild(ul);
}
//]]>
</script>
<script type="text/javascript" src="http://www.blogger.com/feeds/USERID/blogs/BLOGID?alt=json-in-script&callback=listLabels" ></script>
//<![CDATA[
function listLabels(root){
var baseURL = '/search/label/';
var baseHeading = "Labels";
var isFTP = false;
var llDiv = document.getElementById('labelList');
var entry = root.entry;
var h2 = document.createElement('h2');
h2.className = 'sidebar-title';
var h2t = document.createTextNode(baseHeading);
h2.appendChild(h2t);
llDiv.appendChild(h2);
var ul = document.createElement('ul');
ul.id = 'label-list';
var category = entry.category;
labelSort = new Array();
for(p in category){
labelSort[labelSort.length] = [category[p].term];
}
labelSort.sort();
for (var r=0; r < labelSort.length; r++){
var li = document.createElement('li');
var a = document.createElement('a');
if(isFTP){
a.href = baseURL + encodeURIComponent(labelSort[r])+'.html';
}
else {
a.href = baseURL + encodeURIComponent(labelSort[r]);
}
a.innerHTML = labelSort[r] + ' ';
li.appendChild(a);
ul.appendChild(li);
abnk = document.createTextNode(' ');
ul.appendChild(abnk);
}
llDiv.appendChild(ul);
}
//]]>
</script>
<script type="text/javascript" src="http://www.blogger.com/feeds/USERID/blogs/BLOGID?alt=json-in-script&callback=listLabels" ></script>
To configure it, near the bottom in the script change USERID to the user ID you found in your profile link. Then change BLOGID to the ID number you got for your blog. Then at the top, a couple of variables to set depending on whether you are publishing via FTP, or if you are on blogspot. The baseURL should be set to the path to the labels for your setup. If you are on blogspot, what is there now doesn't need to be changed. You only have to change this if you are on FTP, so just find the path to your labels folder and include it here (include the trailing slash). baseHeading is what header it will put above the labels, you can change that to anything you want. The last is the isFTP variable. If you are on blogspot, leave it to false. If you are publishing via FTP, change it to true (this just turns on the file extension in the script which blogspot labels don't use).
With that set, just put the code wherever you want it to display, and try 'er out. I should note, the meta feed doesn't return the label entries in any sort of order that I can tell, so the script above attempts to sort them alphabetically (the sorting will do labels with capitalized first letters, then ones with lowercase first letters).
If you need to style the list, here are the entries used by it for CSS.
#labelList {}
ul#label-list {text-align:justify}
ul#label-list li {display:inline;}
The sample above will give it a cloudy structure (not a true cloud as there is no weight given to the entries, but what the hell).
For a working example, see the bitch as she is now powered by the javascript version.(Update-the bitch is no longer powered by this as Zo moved to using a custom domain, so that link isn't relevant now. Visit her just the same.) And just for giggles, here's the list of labels that Improbulus has used so far in her fancy new domain (she was late to the labeling party, but she is slowly catching up).
Post a Comment
111 comments:
Following everything that has happened here in the past few weeks safe to say, you’re back! :) And with a bang!
Great stuff!
And what is this I see you’ve been dabbling with PHP? For a long time now too? Man, wasn’t I late to that party :( Oh well
you’ve been dabbling with PHP?
I didn't mean to really imply that. My knowledge of PHP is minuscule.
The only thing I did with it for zo was use it to login to her metafeed via Google AuthSub (the php part of it was easy, and I already understood authsub), cache the results so it didn't do it every page load, and dumped the results in a file.
I couldn't even figure out how to process the results with PHP. :-D Pretty lame, I gave up and just dumped the results as a json object than ran javascript on it. So there will be no extensive php work from me.
That's why I was happy to see the public metafeed opened up. I could get rid of the pseudo php and go back straight to javascript, where I'm a little more comfortable.
Cool, Kirk, thanks! A lot of people will be grateful for that.
I'll be fiddling with my labels soon(ish) so that lot ought to reduce. At some point... a Sometime Soon, which may be as long as a Flexible Fortnight...
I know how those Sometime Soons can stretch into Flexible Fortnights. ;-P
Hi, thanks for Blogging such great stuff, I'm finding your Blog useful and entertaining. Please keep it up!
phydeaux3, i've learned a lot from u blog, hope you could help me out this time either.
how could you replace the "newer/older post" with the real post title???
Great stuff!
Easy to implement.
Thanks a lot for this!
Neat!
I just wanted to say to you..
YOU ROCK!
Dear phydeaux3,
Great post! =)
phydeaux3, thank you very much!
I come from Hong Kong, I help my company to make the blog now. Our blog have a own domain name and host on google (blogger classic template) from June2007 (new blog).
I find the HTML/javascript of Lable List for classic template.
I find it long time. (Cos i don't know how to make the Lable list javascript)>.<
Until today, i find your blog from google search engine. I feel very lucky. Now, i copy your javascript
to our blog template. Yes, finish!
So powerful. I feel very happy.
When i finish our blog template, I will send the link to you by email. Thanks for your help & teach.
Besides, i would like to ask you some questions for classic template.
1). How to make a javascript for recent comments on the main page of blog? (cos i worry, when our blog after 1 years or above, i don't know our older post have new comments.)
2). On the blog bottom, the classic template have not the link for click to "older post" or "newer post". How can i do it?
Anyways, thanks again! =)
P. S. So sorry, my english is low level, hope you don't mind.
Best Wishes,
Yee
come from Hong Kong
Great job!
Besides, I would like to ask you, do you know how to make a comment form on the blogger? It comment form not is a pop up windows, its in same page with the post.
I'm is blogging on classic template. Anyways, thanks!
hi!
i tried the script in my blog and it worked.
but i wanted an expandable one to post on my main page...more like the Read More feature so my readers don't have to see my long list of labels but just an expandable tag cloud
thanks
Thank you, thank you, thank you. You saved me from wanting to march down to Blogger HQ with a strongly worded letter after I spent 6 hours fiddling with my layout and found that there really was no official way to put a list of tags in the sidebar.
Bless you.
hi,
at first nice implenetation to get the labels from blogger for ftp publisher.
but it does not work for me.
i retrieve links from the script, which cannot resolved.
e.g. ...../labels/.html ??? is the array field up with blank entries?
these are my entries: http://www.blogger.com/feeds/02119671189792251912/blogs/8773563?alt=json-in-script&callback=listLabels
ok, my main idea is to get a enumerated list of my labels, like i get from technorati via its tag xml list.....i request it via xmlHTTP request.
i came from google groups to your site...and i hope there is an easy way for ftp blogger publisher with using google auth getting their label list enumerated ?
thanks and greets from germany cologne. dan.
Thank you so much! Really clear and it really works. And thanks to Google for making it easy to find this page.
dan,
I looked at your blog (very nice btw) and see where you have the code commented out for the moment. I'm a little unclear exactly what problem is happening, but if the scripts aren't working at all could it be because of this?
<div id="labelList"></div> <script type="text/javascript">
<script type="text/javascript">
Somehow an extra script start tag has got inserted in there, and that seems to keep it from working. Could that be the source of the problem?
Help!
I've inserted your code/style to get the labels working. They work great functionally, however, I can't seem to get the cloudish style working. Not sure if it's a JS issue or a CSS issue. I'm betting on CSS.
Here's my blog page:
http://ascycles.com/beemermonkey.aspx
Note that the blog is a total hack... It's on an .NET page as an iFrame with re-framing JS as well as automatic iFrame sizing code (that works some of the time).
So there's a lot of weird variable to account for.
I think the issue may be that the CSS for the UL is being over-ridden by another UL or LI style or something.
Here's the style that I ripped off:
#labelCloud {text-align:right;font-family:Georgia;}
#labelList .label-list li{display:inline;background-image:none !important;padding:0 0px;margin:0;vertical-align:baseline !important;border:0 !important;}
#labelList ul{list-style-type:none;margin:0 auto;padding:0;}
#labelList a img{border:0;display:inline;margin:0 0 0 3px;padding:0}
#labelList a{text-decoration:none}
#labelList a:hover{text-decoration:underline}
#labelList li a{white-space:nowrap}
#labelList li {padding-left:0px !important}
#labelList .label-list {}
#labelList .label-list {padding-left:0.2em;font-size:9px;color:#000}
#labelList .label-list li:before{content:"" !important}
Note that my Labels/Tags still seem to be in a list, as opposed to being butted against each other inline.
Ideas?
salve phydeaux3,
i have published it again. you can see it run and it works, but it creates some links more, you will see. thx for your answer, yours, daniello
hi BeemerMonkey,
for displaying clouds(different sizes of items), you need a information about the size of each link, you will show on your page.
can you imagine, how css can know, which font-size will be used for the specific link in your cloud? css cant know that, at the moment ;-).
in my first post, i asked something equal.
on my page, eg. i have integrated the technorati cloud tag by using a feed request as in our case here. but different to this request to blogger, i got also the number of each tag(examples you can see on technorati api).
so i can create for each tag the size for it.
after this is done, floating and displaying inline are the right ways to tranform it.
any questions? ;-) sorry for my bad english.
hi again, and sorry for tripel posting, i thinks my error results from blogger feed api.
your script is ok, but it creates links to example: ..../labels/.html
and i thin there is an exception on my blogger feed? or what could it be?
my title from my blog is shown under gdate.io very strange? can this be a problem to get our categories? wish you good evening from germany, dan ;-P
i did it.. but the output is empty.. already replace UserID and BlogID.. but nothing happen :(
Great stuff! I'm reading your blog constantly. Keep up the great work!
Thanks a lot - that worked great - ill link to this !
Thanks, this worked great. Had to make a few adjustments, but the code is solid.
THANK YOU SO MUCH FOR THIS. The instructions were clear and I tried it--it worked! I haven't published yet because my labels are still in list format. I don't understand where to put this:
#labelList {}
ul#label-list {text-align:justify}
ul#label-list li {display:inline;}
Will this allow the labels to appear cloud-like?
Works like magic.
Used it here:
http://www.imebookreview.com
Thanks!
Do you know of any way of getting the Label to show up in the title of the Label pages using the classic blogger template?
woooohooouuuu!!!! the script I have looked for months!!! it is top!!!! I added a scroller marquee to schrink the size of the label list.... see it in action here: http://live-bootleg.blogspot.com/
how can i remove "label list" at the top???
thank you, maraming salamat, merci.
Wonderfull, thanks
how do i have the cloud style? it works but the tags are listed... not the cloud...
i like to have the cloud style... how do i do it?
Fantastic! I was getting really concerned I could not have a label cloud in classic blogger!
This worked first time.
Only one issue I could not find out is how to left justify the label list.
kevin flude
brilliant - thanks for this, I've been looking for a hack like this for ages and all the ones I find preclude the use of FTP.
Cheers Muchly!
great post! thanks.
Just found your page/script.
I had given up hope months ago looking for exactly what you have created. (well almost as the 'cloud' (CSS sizing) would also be cool)...
YOU RULE! I am going to post it on my blog and give you many many many kudos. thank you thank you thank you thank you thank you thank you!
I have an idea -- can you get back to me when you have a chance and let me know if it is possible?
Is it possible to have the javascript you wrote to also read the size of the file? You could then assign a small file - (assuming that file has the least amount of information with regard to that topic) a small font CSS attribute and then a larger size file a larger one and keep getting bigger bolder brighter etc etc...
thx phydeaux3, robinann :-D
My link list stopped working on my account through blogger today. it just disappeared... any idea why?
@20-something
Well it looks like either a Blogger error, or they changed something. Anyway it's on their end.
I'm going to have to look around to see if this is just an error, or a change of behaviour on their side.
sigh..my labels too having problem today =.=
thought it was the effect of editing my own template.
Yeah, Blogger did an update today with a bunch of stuff (new languages, openid providing for blogger in draft, couple other minor things) and I presume that this error creeped in then, as other more destructive errors did as well.
I have reported the problem to the blogger dev group, awaiting a response. This is probably a low priority thing (in comparison to some of the other errors) so will keep an eye out, but the change is on Blogger's end and will have to await their fixing it.
Here's the link: Blogger.com FTP User's Rejoice! You're Label 'Cloud' is now available... -- If you ever update the script, I'll be sure to post another link to you on my website :) -RobinAnn
It has stopped working recently after implementing it with great succes... Anything to do with the marquee???
In my blog, this function also stopped working from there is around 4/5 days ... I am going to be waiting for news of the blogger dev group to know if this problem will be a target of a correction or not.
Best Regards from Portugal,
bLuE bOy
http: // bibo-porto-carago.blogspot.com/
THANK YOU!! I think you answered my question..
phydeaux.. can you provide us (your script users) the address and maybe a copy of what you sent to google so we may also let them know we are awaiting a fix... I am so sad too soon after being so happy about finding your script.
thank you, RobinAnn
oh great and powerful oz,
i used your script to create a tag cloud and it worked beautifully. however, it disappeared recently and i can't figure out why. i looked at the template and the script is intact, but the cloud no longer appears on the blog.
i'll bring you the broom if you help me out!
As I said when i posted on dec 14th Great fix, but something has happened - without me changing anything, except posting blog enteries, the script no longer works - I know longer get the list of labels.
If there is any chance you have an idea why it would be great!
www.anddidthosefeet.blogger.com
is there any solution for this? my labels aren't appearing anymore :(.
Everyone -
Small update. Yes the script is still broken. I did get a response from the Blogger Dev group that the issue is now marked (so they are aware of it), but I have no time frame on a fix on their end.
The error only effects a very small number of feed requests, so it's probably not a very high priority. Just sucks that I/we were using something that broke.
Right now I only have a hint at a possible work around. But 1)I don't have much free time right now and 2)I haven't been able to figure out how to do it.
So apologies that things are still broken, but really I'm probably going to have to wait for Blogger to fix it on their side.
Again, sorry the problem.
Thanks so much for this great script and I'm sorry that Blogger broke it.
If you do have a chance to take another look at it, I know that I will be very grateful as well as all your other fans!
Ok, it looks like this is now fixed (hopefully for good).
The script appears to be now working as intended. If you don't see that, then let me know. Not that there would be much I can do about it, but anyway. :-)
Thanks, I use it at my domain now:
http://www.intrepidstudios.com/blog/
I was thinking of ways to do it and I looked at Blogger's help and no-go. So I searched Google for it and you saved me.
Great stuff, Thanks for that. I was looking for a way to do this and a little searching brought me here.
you're a genius! thank you for all that you do.
Hi,
This would be an absolutely amazing feature for my blog
http://lambeth.greenparty.org.uk/lambethgreennews.html
but I just can't figure out what I've done wrong. I pasted the code into my template, made the changes and nothing is appearing at all.
Surely it should at least be breaking it if I've done something wrong?
nice, thanx for the tips..
@sam bueno
Sorry, I've been behind on responding to comments and missed yours. Unfortunately I think I waited too long and I don't see anything installed now so I can't tell what the problem was.
Hi,
I have been using your script to generate Archives Label in my classic template blog. That was a great script.
Unfortunately, i just realised that (not sure what went wrong)the posting not fully displayed when i did click one of the archives label.
For Xample, For my music archive, i have more than 90 posting and it's just display one-third of the posting or within 6 days.
So I'm not sure either classic template script itself or your script has problem.
Pls advise and thank you for your time.
@robinhood
Known Issues-classic templates/labels
That is a brilliant post..
works perfectly for me first time - great stuff, you have saved me from a whole world of pain.
Ally
I've installed this at The Quagmire at http://www.darsys.net/quagmire.html -- and I thank you VERY much for it.
Hey, thanks A LOT for this post. I'm really glad for Blogger FTP posting, but so many of these fiddly little details are hard to deal with without outside help. So thanks much!
Ei, Thanks for this :D
I had trouble searching for my labels code when I switched from Blogger Layouting Template to the Classic One...
You are very helpful, my friend. I just used 2 of your creations on my site. So I'm definitely gonna link you in my blogroll. Thanks again.
Thank you a lot! I was goin' mad to install a simple label tag for my blog and I found that right here. I immediately put your link in my favourites.
Fuliggine ^_^
hi.. phydeaux3 thanks for great script, just want to inform to everybody that you must set the profile "share to public" to make your label appears.
you can check my blog how to implement this nice script:-)
http://conradsharry.blogspot.com.
I used the code and it works, but it doesn't display as a "cloud", it just creates an unnumbered list. Can you show how to format it as a cloud?
Thx,
JP
Great script, worked a treat, saved me a lot of hassle so I'm really grateful, thanks.
Quick question, do you know of any way to put the labels in an order other than alphabetical? I'm just using around 10 tags but would like to define their sequence, is there anything you can suggest?
Thanks again
How helpful, thank you very much!
Please, I am looking for the script to display the "Showing posts with label 'xxx'" part of the humorless bitch blog - any way you have this for me?
amazing! i absolutely love this and it was so easy to do.
amazing! i absolutely love this and it was so easy to do.
WOOOOT!
finally, someone told me something. i've been fiddling around for so long trying to figure out how to do it.
merci beaucoup!
BUT
do you know if i can change the font of "labels"?
Amazing script. God bless you!
Great code - thank a lot!
/JHH
it works! thanx~
thx for this codes
I have try and it's work properly ,
thanks thanks thanks thanks
Thanks, that was very handy, and the instructions were perfect.
Is there anyway this code can be extended to display a Tag cloud for old blogger??
My blog on Blogger has a much longer User ID number than what you use in your example (20 characters). The JSON URL with the USER ID and BLOGID variables outputs a message that says "Invalid request for blog". What am I doing wrong?
@stephen clark
I would have to see the url to start to know. I can't get that just by looking at your blog as the USERID isn't available.
If you post it here I'll try to see.
And don't worry, nothing confidential is exposed by that.
thank you soooo much :)!! i was lookin for this. you helped a lot!
Thanks for this code! It's great, but I would like to tweak it a bit. Is there a way to get it to sort alphabetically without making capitalized letters first?
hi phydeaux3;
my label list stopped working today? it was working yesterday but today it just disappeared? do you have an idea?
@John
If there is, I don't know how to do it. Sorry.
@ Anonymous
It seems like something is wrong on Bloggers end causing an error for feed the script uses. I have put in a request with their API group, but they will have to fix that on Blogger's end before it will work again. Sorry.
so if they fix that error, i don't have do anything, don't i? just wait?
otherwise, do i have to change my label list codes that which you'll change in the future?
My label list stopped working as well...
my label list just disappeared for no reason when i came back from holiday.
what went wrong?
http://mrmfashion.blogspot.com/
Mine stopped too. But thank you for this script. It's been working great for a long time.
I love this script. It is a shame it isn't working...I like the control I have using the classic template and having a label list was perfect. Is there possibly a workaround?
okay, today i've checked my list again and it's working at the moment. (fixed automatically) nop.
The problem with the label list was a problem on Blogger's end with the feed it uses. It seems to be fixed now.
the javascript paste before the body, the style paste at the style.
but how will the labels be displayed at the sidebar?
i don't know the coding.
please reply at my blog:
http://fallen-angel-renise.blogspot.com/
thanks.
-Renise-
phydeaux3:
sorry phydeaux3, i have fixed the problem in my blog for the labels.
thanks for your informative post here. =)
Wow I can't tell you how thankful I am. I've been looking for this for the past two hours without any success. This is easy to implement and it works just fine. Thank you VERY MUCH !!!!!
Great work! I changed the code and CSS a bit to use .aspx pages and make a left justified block list that you can see at my blog http://www.reviewdigitalpen.com
I tried it but it just don't appear. What could be the problem?
http://www.georgeamaral.com/blog
Hi there! I'm looking for an answer nobody so far has been able to offer!!! Hope you're the right person!
I am using the old blogger template and I have plenty of posts... On the main page I usually publish the 5-10 most recent posts... The others have been put on a side bar according to their labels... Unfortunately when I click on the link to any given label the posts shown on the new page will be a maximum of 20... Which is annoying as in same cases I have more than 20 posts labelled the same...
Would you know if this is normal? I mean... is there a way I can label more than 20 posts with the same name and be able to actually see them?
Thanks in advance
Barrioporteno
@Barrio -
http://knownissues.blogspot.com/2007/01/if-you-use-classic-template-labels.html
Really the only way around it I know of is to switch to a layouts based template.
Thank You!!! The script helped me out a lot! You're awesome!
Hi,
Recently I was doing up my own blog and thus used the code you had provided. Indeed it helps alot. However, I'm facing some problem. Here's my site: www.e-l-t.blogspot.com , is there a way to get rid of the grey bullet of the label?
Hope you can help me in this. Thanks
How do you get rid of the title which says Labels? Because I already have a title. When I delete the section, the whole thing deletes. How do I delete it? By the way, Thankyou for coding this for us- helps a lot.
I cannot locate a folder named 'labels' on my FTP hosted Blogger site - should this be there or is this folder generated dynamically?
@new_punishment -
It's there.
http://www.deepr.ca/new_punishment/labels/
... and there it is! Honestly, it wasn't there yesterday ... thanks!
Hi there!
I've tried to paste the script into the classic template of blogger but nothing happens. I've already changed the userid and blogid as per your instructions. Could you please advise me? Thank you! :)
p.s.: Wow, it's phenomenal (to me at least) to see so many positive comments for a tip/help given by someone online! Gd job!
@kahming -
Thanks for the comments, and I took a look at the blog in your profile but that doesn't help.
Is it that blog you are talking about? As it doesn't use a classic template, and without seeing how the script is installed I can't guess on why it's not working.
If it's on another blog you'll have to point me at it.
Great fix! After a day of searching for automatic label generation, I'm so glad I came upon your page. It was easy and works flawlessly!
Hi phydeaux3!
No, that's not the blog. How may I pass you the script? You mean my whole template or what? Or just that portion of the script? Via email? I can give you my email if you need. Thanks!!! :)
What a great, helpful post!
Thanks!
Hi, your page is really useful... However I still got a slight problem... How can I remove the bullets points?
http://080609.blogspot.com/
Post a Comment
0