Questions tagged [umbraco-tags]

Umbraco-tags are a way to categorise your pages/content so you can pull through certain content based on a TAG, you can also have TAG groups so within one installation you could have the same TAG names but associated to different groups.

Using the Tag Datatype

Tags

Returns: Comma Separated String

A textbox that allows you to use multiple tags on a docType. You can specify a Tag Group when creating new versions of this datatype so that you can use Tags on different sections of your site (i.e News, Article, Events).


are a way to categorise your pages/content so you can pull through certain content based on a TAG, you can also have TAG groups so within one installation you could have the same TAG names but associated to different groups.

For example you could have a TAG group called ‘FAQ’ and ‘News’ but both groups have a tag called General – Using TAG groups mean you could pull through all content tagged with General but differentiate between FAQ and News items.

9 questions
7
votes
3 answers

Umbraco - Get All tags used in a node/group

I have used GetTags() method under umbraco.cms.businesslogic.Tags.Tag to get all tags under a group or node. var tags = umbraco.cms.businesslogic.Tags.Tag.GetTags("default"); But with umbraco.cms.businesslogic.Tags.Tag being obsolete now, is there…
Shaunak D
  • 19,751
  • 9
  • 41
  • 72
1
vote
2 answers

Umbraco Razor c# Listing unique tags

I have been trying to create a blog using Umbraco v6 using Razor. This is my first Umbraco project so I am still getting to grips with things but I have managed to get most of it working how I want but I would like to list tags in a side widget. So…
0
votes
1 answer

Umbraco call C# in XSLT, decode fXML output

I'm calling a C# function from XSLT in Umbraco 4.7.1. My function is returning value of the "tag" property on current node, problem is my output is encoded. In xsltExtensions.config I have added an assembly extension. In my XSLT I'm getting the…
egeek
  • 217
  • 3
  • 11
0
votes
1 answer

Umbraco: Associated items to multiple tag groups

Assuming we have 2 document types: TagGroup [DisplayName] and TagGroupItem [DisplayName] with TagGroupItems being children of TagGroup. That said, assume we have the following data: Color - Red - Green - Blue Finish - Aluminum - Plastic Color and…
StephenPAdams
  • 2,719
  • 2
  • 27
  • 48
0
votes
2 answers

Iterate over Umbraco getAllTagsInGroup result

I'm trying to get a list of tags from a particular tag group in Umbraco (v4.0.2.1) using the following code: var tags = umbraco.editorControls.tags.library.getAllTagsInGroup("document downloads"); What I want to do is just output a list of those…
Briquette
  • 5,336
  • 20
  • 77
  • 129
0
votes
2 answers

Using Umbraco search with tags

I have setup umbraco search xslt package. In my xslt I am searching by pagename, title, description and now, tags. The tags property is a document type property of the type, 'Tags'. The search xslt is below;
user23048345
  • 2,603
  • 7
  • 28
  • 31
0
votes
1 answer

(Umbraco) How can I list related pages by tags?

In the last node of my site is where the articles are shown, and everyone has its own tags that of course can be the same between some of them, so I wrote a Macro for tags that is working (it lists the tags of the article the user is viewing), I've…
0
votes
3 answers

tagging in umbraco 4.11 just like stackoverflow

im using snipper tag system and following below article: http://daniel.streefkerkonline.com/tag/umbraco/ i can install and use snipper tag system successfully. but when i browse the page..tags appear as text and not hyper link... Am i'm missing…
0
votes
1 answer

Generating content based on tags in Umbraco

Umbraco, or rather xslt, seems to give me errors when I try to generate a list of content nodes based on a specific tag. Consider the following code in a Macro:
Maurice
  • 3
  • 4