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.
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').
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...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.