Questions tagged [umbraco7]

Umbraco 7 is an open source content management system (CMS) platform for publishing content on the World Wide Web and intranets. It is written in C# and deployed on Microsoft based infrastructure.

Umbraco 7 is the seventh stable release of Umbraco - an open source content management system (CMS) platform for publishing content on the World Wide Web and intranets. It is written in C# and deployed on Microsoft based infrastructure. The open source backend is released under an MIT License while the UI is released under the Umbraco license.

Resources

https://umbraco.com/products/umbraco-cms/umbraco-7/

1479 questions
3
votes
2 answers

umbraco 7.1 logout (razor syntax C#)

I have an umbraco 7.1 website and I use its own membership system.I can easily log in,see my status,even change password BUT there is no logout command and I don't know what method I should use for umbraco 7 to logout current user.I know i can clear…
Geekmard
  • 166
  • 1
  • 3
  • 10
3
votes
1 answer

Get all users in Umbraco v7.1.4

I am trying to retrieve the details of all users in my Umbraco site. The purpose of this is so that a content creator can specify usernames as "Owners" of the content that can be contacted by anonymous users of the website (a simple "mailto" link…
LoveFortyDown
  • 1,011
  • 2
  • 17
  • 37
3
votes
3 answers

Umbraco 7 hide navigation nodes user has no access to

I've seen some examples in previous versions of Umbraco (namely 5) where this seemed to be relatively straightforward. See this stackoverflow question for example. The theory is that I can use a property HasAccess or IsProtected on a node, or the…
darth_phoenixx
  • 932
  • 12
  • 23
3
votes
1 answer

Is it possible to use dependency injection with Umbraco 7 ContentService event handlers?

I am using Umbraco 7.1.1 with an MVC project, and I've configured it to use dependency injection (Castle.Windsor in my case). I'm also using NServiceBus to send messages etc and it's working pretty well. I am now attempting to hook into the…
thecodefish
  • 388
  • 2
  • 13
3
votes
4 answers

umbraco 7: get property value

I am using umbraco 7 ASP.NET C# MVC 4. Im trying to use the new umbraco, so far its been ok, but i need to get a property of one of my pages i set up. @inherits Umbraco.Web.Mvc.UmbracoTemplatePage @{ var homePage =…
lemunk
  • 2,616
  • 12
  • 57
  • 87
3
votes
1 answer

Umbraco Partial View Macro disappears from richtext editor when saving content

I'm struggling with a problem in Umbraco 7 that is when I attach a macro from a Partial View Macro file inside my richtext editor, it disappears from the editor, when I save the content. The content is displayed fine on the page, but when I save the…
Cfrim
  • 920
  • 9
  • 19
3
votes
2 answers

How can I display a Media picker image

Sorry this might be a newbie question but I am quite new to Umbraco. I have a media picker set up on a document type, and it all works fine. So I go to the template and enter @Umbraco.Field("bottomRightLarge") this only gives me the ID of the…
chris
  • 551
  • 1
  • 13
  • 32
2
votes
2 answers

Umbraco routing not working outside Home node

To reproduce the issue create the following hierarchy: Content Home Foo Bar - The published URL will be /foo/bar Foo Bar - The published URLwill be /bar Why does umbraco skip /foo/ when creating a page outside of Home?…
hidarikani
  • 1,121
  • 1
  • 11
  • 25
2
votes
0 answers

Calling and binding a C# function to a button in Razor pages, Umbraco

I want to bind this already existing function to a button. The function is tested and it completely working. It is important to me to keep all of the code in one razor page. @functions { public void LogCheck() { string loginemail =…
GGesheva
  • 157
  • 1
  • 4
  • 13
2
votes
2 answers

Instagram new client registration disabled

I'm using SkyBrud (https://social.skybrud.dk/instagram/) and usually setup Instagram with this API within an Umbraco/ASP .net site. The site would display images from Instagram to my site, which is connected via API keys generated on Instagram and…
Computer
  • 2,149
  • 7
  • 34
  • 71
2
votes
1 answer

How do I get document field values for an item in Umbraco 7 backoffice

I have created a custom Umbraco 7 dashboard. In it I want to get specific field details from instances of a known type of document type in my Umbraco CMS. I have successfully obtained a list of all documents of a specific type by using…
Pete Stensønes
  • 5,595
  • 2
  • 39
  • 62
2
votes
0 answers

Error on generating models in Umbraco 7.6 in ModelsBuilder API mode

I have Umbraco 7.6 I am trying to enable ModelsBuilder in API mode. As far as I learned in my version of umbraco Umbraco.ModelsBuilder.Api should have already been part of the Umbraco.Core and installed. However when I check in my Developer >…
nickornotto
  • 1,946
  • 4
  • 36
  • 68
2
votes
0 answers

How can I restrict one tenant user from another tenant in Umbraco 8?

In Umbraco 8, When I'm Creating multi tenant and base on tenant I'm creating user in user section. After that When I'm login with tenant admin/user at that time he is able to access all tenant user. which is not correct. So How can I restrict one…
parvezalam khan
  • 480
  • 2
  • 11
2
votes
1 answer

Umbraco C# - Display 2 different columns on foreach loop (1-2) (1-2)

I'm trying to display data from the Umbraco in this order 1-2 in foreach loop (bootstarp columns), but my code is displaying in this order of columns 1-1, instead of 1-2 on loop. It does not add the second column to the second row just one…
Kevin Dias
  • 1,043
  • 10
  • 28
2
votes
0 answers

Umbraco relations service and slave Umbraco instances

This question relates to Umbraco, Umbraco slave instances and the Umbraco Relation Service API. We currently have a site designated as a master Umbraco instance which handles all updates to content. Our intention is to set up slave instances in…