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
1
vote
2 answers

Umbraco add items dynamically

I have a problem where I cannot figure out how to solve. Lets say i have a company with products. I want to be able to add new products, delete products and edit current products. I also want to list these projects on a product page. I know how to…
Thugge
  • 208
  • 1
  • 4
  • 10
1
vote
1 answer

Custom Controller Umbraco

I just started learning Umbraco, I have started small project just to learn Umbraco. I am having problem in creating custom controller. I have a link on my page for user to browse all the products: @Html.ActionLink("View more", "Index", "Product",…
Fahad
  • 173
  • 1
  • 12
1
vote
2 answers

How to add custom fields using umbraco cms?

Currently i'm working on project that's built into umbraco cms, now i want to add some functionality like add custom fields using umbraco so is there any way to add custom fields into project using umbraco ? e.g. i have fields named "text,imageURL…
Nimesh khatri
  • 763
  • 12
  • 29
1
vote
0 answers

Disabling and enabling miniprofiler when working with Umbraco 7

This is a two part question, which circles around the same problematcis. Without setting anything up in Global.Asax, and just inserting this line in my .cshtml file for my basic layout, and running my site in debug mode, the MiniProfiler is…
Squazz
  • 3,912
  • 7
  • 38
  • 62
1
vote
0 answers

Umbraco: TabsAndPropertiesResolver is not getting recognised

Iam trying to use Umbraco.Web.Models.Mapping.TabsAndPropertiesResolver method in umbraco custom section api however not able to include it. using Umbraco.Web.Models.Mapping; TabsAndPropertiesResolver.AddListView(display, "member",…
Harshit
  • 397
  • 2
  • 6
  • 17
1
vote
2 answers

Create NestedContent Items In SurfaceController

I have two document types: FormSubmission FormField The Form document type has a property named Fields which is a Nested Content data type that contains a list of FormField document types. I am trying to programmatically (in a SurfaceController)…
Paul
  • 155
  • 14
1
vote
1 answer

Failed to retrieve data for content id - after deleting a property

I'm currently working on a project using Umbraco and I ended up with this error after something went wrong when editing an Archetype property. The Archetype object cleared all of its properties for some reason and I deleted it with the intention to…
Mikkel
  • 1,853
  • 1
  • 15
  • 31
1
vote
1 answer

forEach loop through to a level and assignment of value in angular js

I have an array of 4 objects in the response like: In each object I have a properties array of 8 objects I am trying to assign for each property value of object to the properties value of other object having the same structure. I am directly…
Harshit
  • 397
  • 2
  • 6
  • 17
1
vote
2 answers

Serializing published content in umbraco

I am currently writing an api for a custom application my company is writing. Part of this involves getting published content out in JSON format. When I try serializing ipublishedcontent directly it obviously attempts to serialize all of the umbraco…
Chris Foot
  • 343
  • 1
  • 5
  • 17
1
vote
1 answer

Umbraco TinyMCE Editor in Custom Page

I have website , developed using Umbraco CMS, SQL server and asp.net C#, and I have created custom modules to the website using asp.net,and I want to use Umbraco TinyMCE Editor in Custom Page, instead the .Net textbox , please if any body know send…
J Mos
  • 11
  • 1
1
vote
1 answer

Publishing Umbraco site, bundles doesn't work

I have a website made in Umbraco connected to Visual Studio 2012. When I start the project (F5) it looks like it should with CSS and jQuery. In this project we use bundles. When I publish my website, the bundles can't be found. "Failed to load…
MissAndersson
  • 59
  • 1
  • 1
  • 8
1
vote
3 answers

Umbraco - Add member to group

I need that when you register a member, to put it in a specific group. I believe the "sniper" "Register Members". I'm using the latest version of Umbraco. I was investigating but I can not make it work. @inherits…
avechuche
  • 1,470
  • 6
  • 28
  • 45
1
vote
1 answer

Applying a Regex to a Rich text Box in Umbraco 7

I'm trying to apply a very simple regex to a Rich Text Box in Umbraco 7. The regex I'm trying to apply is [^£\$]. I've tried some simple ones, [a-zA-Z], etc, but nothing seems to take effect. Switching the property to as textString, and the regexes…
John Mc
  • 444
  • 2
  • 15
1
vote
1 answer

Hook up Auth0AccountController in Umbraco 7

Has anyone successfully integrated Auth0 with Umbraco 7 for member (front-end public users, not CMS back-end users) authentication? I've successfully integrated with owin startup and dealing with signin-auth0 response. However I'm stuck on hooking…
Gavin
  • 5,629
  • 7
  • 44
  • 86
1
vote
1 answer

Umbraco Render image from media library using for loop in partial page

@{ var partnerReviews = CurrentPage.Site().FirstChild("generalDataType").Children("partnersReview").Where("Visible"); } @foreach(var item in partnerReviews){
Parth Patel
  • 3,937
  • 2
  • 27
  • 44