Press Ctrl / CMD + C to copy this to your clipboard.
Copied to clipboard
Flag this post as spam?
This post will be reported to the moderators as potential spam to be looked at
Topic author was deleted
Feb 11, 2011 @ 10:03
Dynamically generated tagpage
Hi,
I 'am looking for a solution in which a tag can be click on a page and this leads to a dynmically generated page which list al related item of that tag.
example: a page as a tag Facebook The tag is presented as a link. When a user clicks on the tag he will be redirected to a page which has the url www.website.com/tags/facebook. On this page all the pages within the website that have the tag facebook will be listed.
Topic author was deleted
Dynamically generated tagpage
Hi,
I 'am looking for a solution in which a tag can be click on a page and this leads to a dynmically generated page which list al related item of that tag.
example: a page as a tag Facebook The tag is presented as a link. When a user clicks on the tag he will be redirected to a page which has the url www.website.com/tags/facebook. On this page all the pages within the website that have the tag facebook will be listed.
I have already implemented the tags.
Is this possible?
Many thanks!
I think there's a tag-cloud in the Blog4Umbraco. You could perhaps take a look at that XSLT and find some inspiration. If it's possible? Yes...
Pseudo-code like you have to create an XSLT which loops through all interesting nodes and picks those with the tag "facebook":
for-each node
if node-tag = "selectedtag"
then output to list...
You could send the tag from the tag-cloud via querystring and then grab it with the umbraco.library:RequestQuerystring('tag').
Comment author was deleted
Hi Berntsen,
I had a look at the umbraco blog tags functions and i am already a bit closer to my solution.
thnx
is working on a reply...