Questions tagged [umbraco8]

Umbraco 8 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 8 is the eighth 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://our.umbraco.com/documentation/v8documentation

141 questions
1
vote
1 answer

Truncate Text from Rich Text Editor - Umbraco 8

Im trying to truncate the article text to display only the first 100 characters of the string. @item.Value("articleContent").ToString().Truncate(100) Read More.. This works perfectly to truncate the string - but it…
Charlene Vas
  • 751
  • 1
  • 8
  • 20
1
vote
1 answer

How to set up Umbraco and React JS

I'm trying to build a website using Umbraco 8 CMS, but I want to write the front end code in React JS. Is this possible?
Charlene Vas
  • 751
  • 1
  • 8
  • 20
1
vote
1 answer

Is it possible to limit the height of the rich text editor in Umbraco CMS 8?

When you enter a large amount of content in the the RTE in umbraco, the RTE extends to accomodate the quantity of content. This can result in a lot of scrolling of the whole screen, such that the RTE toolbar scrolls out of the viewport. This can…
Greg B
  • 13,819
  • 18
  • 78
  • 132
1
vote
1 answer

Controllers folder missing Umbraco 8

I installed Umbraco 8.4 as per the instructions found at https://our.umbraco.com/documentation/Getting-Started/Setup/Install/install-umbraco-with-nuget Once done within Visual Studio 2017 i tried to created a new Controller and the folder…
Computer
  • 1,786
  • 6
  • 28
  • 57
1
vote
2 answers

Limit UmbracoAuthorizedController to Umbraco Admin Users Only

I have create a new controller, inherited from the Umbraco.Web.Mvc.UmbracoAuthorizedController and trying to limit it to only logged in Umbraco Administrators. My current solution displays the view for only logged in umbraco users, but I cannot…
Crick3t
  • 659
  • 1
  • 8
  • 19
1
vote
1 answer

How to archive old nodes in Umbraco8

We're working on a news website, we have large amount of data, around 1 million news with 500 GB of media. we did some researches about the best practices, but there's lack of resources in handling this issue. we concluded that we must archive the…
Saif Obeidat
  • 158
  • 2
  • 12
1
vote
1 answer

Unit Testing Umbraco 8 Composers

I'm fairly new to unit testing so go easy on me! I'm attempting to use a fairly simple Umbraco 8 project as a bit of a test bed. I'm currently stuck on trying to test a composer which registers a dependency and having a tough time figuring out how…
0Neji
  • 965
  • 1
  • 10
  • 30
1
vote
1 answer

Adding custom type in Umbraco 8

I've been testing Umbraco 8 for a while, and i'm stuck on an attempt to add a custom workflow type to umbraco forms. I tried the simple example from…
KristianMedK
  • 1,103
  • 3
  • 17
  • 47
1
vote
1 answer

How to create normal controllers and views in an ASP.NET MVC application that already has umbraco 8 installed

I would like to include normal controllers and views in my ASP.NET MVC application that already has Umbraco setup, pardon me if I am missing something as I am new to Umbraco. I tried to follow this…
user167124
  • 339
  • 2
  • 12
1
vote
1 answer

How to make a Master Layout Template with A DocumentType (Model) in Umbraco 8?

I am creating a website in umbraco 8 in this I have a master layout template and I have added the document type for this master layout and used a ImageCropper in it now I need to use the Image set from the content in the master layout template, How…
user167124
  • 339
  • 2
  • 12
1
vote
1 answer

Unable to loop inside media Folder in Umbraco 8

I have 2 images in a media folder and I need to display them. I've been trying to loop inside the folder but have not been unable to. That's my code: var media = Model.Value>("mediaFolder"); foreach (var item in…
1
vote
0 answers

I get the error when using get property value on Umbraco v8

I use Umbraco v8 and code is here var home = Model.Root(); var results = home.Children.FirstOrDefault(i => i.IsDocumentType("results")); var resultSliders = (results?.GetProperty("resultSliders")?.GetValue() as IEnumerable) ?? new…
Murat Aras
  • 67
  • 5
1
vote
3 answers

Get image url from MacroPartialView Umbraco 8

Hi I used to be able to get image url from macro with: var imgMain = Model.MacroParameters["image"]; int imgWidth = Convert.ToInt32(Model.MacroParameters["imageWidth"]); var mediaItemOne = Umbraco.TypedMedia(imgMain);
1
vote
2 answers

How to upload file from umbraco backoffice to media section?

I am using a custom section within umbraco for displaying messages sent by users. I want the admins to be able to answer these messages by uploading a file to the message itself. This way I will know which file belongs to which message. I have…
0
votes
0 answers

Umbraco 8 Examine/Lucene query returns no results in code but searching from the backoffice works as expected

I'm trying to do a simple Lucene query in a fresh Umbraco 8 site (8.13.0, Examine 1.1, Lucene.Net 3.0.3). I'm trying to get all documents of a specific type but I get no results…
Greg B
  • 13,819
  • 18
  • 78
  • 132
1 2
3
9 10