Questions tagged [umbraco]

Umbraco is an open-source content management system platform for publishing content on the World Wide Web and intranets. It is written in C# and deployed on Microsoft based infrastructure. Since version 4.5, the whole system has been available under an MIT License.

More information about Umbraco can be found on the main Umbraco website.

Community provided support and documentation can be found on our.umbraco.org.

Umbraco was first created in 2000 by Niels Hartvig and went open source in 2004. The current version is available for download on the Microsoft Web Platform Installer or directly from GitHub.

Development of Version 5, based on ASP.net MVC, was retired at the Umbraco developer conference 2012. Since then, efforts have gone into building on the more mature Version 4 and version 6, including integration of MVC, and also a rewrite of the core API. Version 7 comes with a new user interface.

It is in use on over 110,000 sites worldwide and has a strong developer community, including a number of certified partners across the globe.

The Umbraco HQ released Umbraco as a Service (Uaas) on a paid subscription plan in September, 2015.

4461 questions
7
votes
1 answer

How to remove specific URL's from profiling when using MiniProfiler

Sometimes when using the miniprofiler, there's just some requests that you doesn't care about. In my case I don't care much about signalr, umbraco pings, and some requests made when I wanna know if the user is idle or not. To avoid the miniprofiler…
Squazz
  • 3,912
  • 7
  • 38
  • 62
7
votes
2 answers

Get current user in Umbraco version 7.3.5

I'm trying to access the logged in Umbraco User, not member, but I cant get it work. I have tried with the following methods but none work, they all return…
Ogglas
  • 62,132
  • 37
  • 328
  • 418
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
  • 20,588
  • 10
  • 46
  • 79
7
votes
2 answers

Umbraco get dictionary item by language, how?

In Umbraco v6 it's possible to get a dictionaryitem with the following command: umbraco.library.GetDictionaryItem("EmailSubject"); This retrieves the proper value of "EmailSubject" depending on which culture the user is visiting the umbraco…
firepol
  • 1,731
  • 22
  • 39
7
votes
3 answers

Creating a new member programmatically in Umbraco

I'm trying to create a new member for my Umbraco site programmatically but I'm not confident that I am doing this correctly. My code looks like this: MemberType demoMemberType = new MemberType(1040); //id of membertype ‘demo’ Member newMember =…
Sean
  • 897
  • 4
  • 20
  • 42
7
votes
5 answers

Umbraco pagination

First time Umbraco user. I'm looking to add pagination to the following basic loop: @foreach (var example in CurrentPage.Children.OrderBy("createDate descending").Take(8)){ //Do Stuff// } Any ideas? Thanks
Phil
  • 515
  • 2
  • 6
  • 16
7
votes
1 answer

Deploying an Umbraco site using Visual Studio

I'm almost finished with my first Umbraco site and i've been looking through these forums as well as the ourumbraco.org forums to try and find a definitive guide as to how to publish an Umbraco site to a live staging area however, as I have found so…
jezzipin
  • 4,110
  • 14
  • 50
  • 94
7
votes
3 answers

How to turn off upgrade message in Umbraco backoffice

Is it possible to turn off the Umbraco upgrade message in the Umbraco backoffice. Don't necessarily want my users to see this.
wingyip
  • 3,465
  • 2
  • 34
  • 52
7
votes
3 answers

App_Code folder created automatically in published website

I have a MVC4 App created in VS 2010 with Umbraco 6 too and I've created a web deploy project which is used by my Team City CI server to deploy my website to a CI environment for testing. On the CI server the first time I load the homepage (or any…
richybailey
  • 71
  • 1
  • 2
7
votes
1 answer

Difference between Umbraco NuGet Packages

I was wondering if someone could explain the differences between the Umbraco Cms Core Binaries Package and Umbraco Cms NuGet Package?
John Churchley
  • 434
  • 4
  • 17
7
votes
1 answer

How to create a project package for Umbraco?

I need to create a project for umbraco. I Don't know where to start and where to see about this. I googled and found nothing helpful instead I got confused what is umbraco project. To create a umbraco project whether I need to create web…
Gopinath Perumal
  • 2,258
  • 3
  • 28
  • 41
7
votes
2 answers

How to change link to document in Umbraco manually

My breadcrumbs are broken because of incorrect link to home page. Please tell me, how can I change the "Link to document" parameter manually. I use umbraco 4.7.2 I need the omain name only on home page and full absolute pathes on internal…
Sergey Shafiev
  • 4,205
  • 4
  • 26
  • 37
7
votes
2 answers

How to add a custom css stylesheet to Umbraco Admin

Wondering if anyone knows how to add a custom css stylesheet to the admin backend section, without altering the original masterpages/umbraco.aspx. I have a custom section implemented, so it has it's own section tray icon, and I can add the css to…
SatBav
  • 73
  • 1
  • 9
7
votes
5 answers

Randomly choose a node in XSLT

I have a question about some sort af random function in XSLT. I have an XML-file that very simplified look similar to this: Flemming 1200
Kim Andersen
  • 1,913
  • 4
  • 23
  • 36
7
votes
3 answers

Umbraco: differences between Node, DynamicNode, Content

Then there are many class that represents Umbraco documents: 1) umbraco.cms.businesslogic.Content 2) umbraco.cms.businesslogic.web.Document 3) umbraco.MacroEngines.DynamicNode 4) umbraco.presentation.nodeFactory.Node Are there any others? Can you…
riofly
  • 1,694
  • 3
  • 19
  • 40