Contents with the Content field Tag Node
-
Fluid.Core 2.3.0, add Content Field handlers to enforce validation in the content API - This week in Orchard (23/12/2022)
Announcement, This week in Orchard, Content field, LiquidFluid.Core 2.3.0, add Content Field handlers to enforce validation in the content API, and please help the community to decide whether to merge the Responsive Admin Theme or not. Check out our last post for this year!
-
Add a way to retrieve a UTC now DateTime in Liquid, Responsive Admin Theme - This week in Orchard (04/11/2022)
Admin UI, Navigation, This week in Orchard, Content field, Content part, LiquidAdd a way to retrieve a UTC now DateTime in Liquid, change the Query Schema editor to Monaco Editor, allowing multiple
INavigationManager
, and a demo about the responsive Admin Theme! Let's get started! -
Orchard Harvest 2023, User Notifications - This week in Orchard (28/10/2022)
Admin UI, Announcement, This week in Orchard, Content field, Theme, Workflows, WidgetAdding default form templates for the Default Theme, adding wrapper element for all content fields, demo about the User Notifications module and don't forget to fill out a survey about the next Orchard Harvest conference!
-
Fixing in the ContentPickerFieldIndexProvider, Lombiq Base Theme for Orchard Core - This week in Orchard (13/05/2022)
Announcement, This week in Orchard, Content field, Theme, PermissionFixing that unpublishing and editing content item with uninitialized ContentPickerField breaks, renaming ReverseProxySettings permission to ManageReverseProxySettings, and our Base Theme for Orchard Core is officially released! Check out our current post to read about the details!
-
Creating ContentPart_Edit Shape using ShapeResult to support placement, Swagger module - This week in Orchard (14/04/2022)
Placement, Documentation, This week in Orchard, Content fieldThis week you can read about updating the Roles module documentation, creating ContentPart_Edit Shape using ShapeResult to support placement, fixing an NRE when trying to save an empty LinkField and a demo of a Swagger module for Orchard Core! Are you interested in the details? Check out this post for more!
-
Monaco editor supports preview, Vue.js Single File Components in Lombiq Vue.js module - This week in Orchard (25/02/2022)
Admin UI, Documentation, This week in Orchard, Content fieldThis week you can read about updating the Monaco editor to support preview, improving the documentation of Orchard Core, search form improvements, and a demo about using Vue.js Single File Components in Lombiq Vue.js module for Orchard Core! Are you interested in the details? Check out this post for more!
-
Sitemap deployment plans and recipes, Device Preview module - This week in Orchard (04/11/2021)
This week in Orchard, Content field, User Picker FieldSitemap deployment plans and recipes, improve reset password email experience, a new Device Preview module, and many more coming this week! Do you want to know more? Then don't forget to check out our current post!
-
Orchard Core 1.1 release, Dynamic style Content Field - This week in Orchard (28/10/2021)
Media Library, Documentation, This week in Orchard, Content fieldWe are thrilled to announce that Orchard Core 1.1 is now available! Check out this post to know everything about the latest release of Orchard Core and see a demo about a great third-party Orchard Core module that provides a dynamic styling content field for Orchard Core! Let's get started!
-
Fixing rendering of helper and block tag helper, Bynder for Orchard Core - This week in Orchard (21/10/2021)
Media Library, Query, Documentation, This week in Orchard, Content fieldFixing rendering of helper and block tag helper, documentation for the Feature Profiles, OpenID improvements, and demo about a module that integrates Bynder for Orchard Core! Don't forget to check out our current post to know more!
-
URI components Liquid accessors, Lombiq JSON Editor - This week in Orchard (15/09/2021)
Documentation, This week in Orchard, Content field, Workflows, LiquidAdd Cc and Bcc to Workflow Email Task, URI components Liquid accessors, Lombiq JSON editor, and many more coming this week! Do you want to know more? Then it's time to check out our current post!
-
Include or exclude tenant features and/or themes, allow editing Time Field seconds and milliseconds - This week in Orchard (07/09/2021)
Admin UI, Documentation, This week in Orchard, Content field, Recipes, Resource manifestAllow to edit Time Field seconds and milliseconds, document dependency version selection in ResourceManagementOptionsConfiguration class, demo about a feature to include or exclude tenant features and/or themes, and many more coming this week! Check out our post for more!
-
Media search indexing, code analysis - This week in Orchard (14/06/2021)
Media Library, Translation, This week in Orchard, Content field, RecipesImproving the code quality of Orchard Core by code analysis, supporting multiple translation providers, and adding a media search indexing feature to Orchard Core! Check out our post now for more!
-
Spatial Search, 5000+ Stargazers - This week in Orchard (02/05/2021)
Query, Localization, This week in Orchard, Content fieldThis week you could see a demo about an upcoming Spatial Search feature for Orchard Core! Do you know that Orchard Core's repository now has more than 5000+ stargazers? Check out our post for more!
-
Monaco Editor, Introduce ResourcePosition - This week in Orchard (13/03/2021)
Admin UI, This week in Orchard, Content field, Theme, RecipesThe Monaco Editor is the code editor that powers VS Code. And from now you can use it in Orchard Core too! Check out our post for the latest improvements of Orchard Core and don't forget to take a look at our Orchard Ambassadors Toolbox!
-
Dynamic user permissions, Multi Text Field - This week in Orchard (14/02/2021)
Permissions, Documentation, This week in Orchard, Content field, RoleWe also have two demos this week! One is about the Multi Text Field, a new field that can be used to define multiple selectable options to a given list, the other is about the new dynamic user permissions, which can be useful if you would like to restrict user management by their allocated roles. Read our post for more!
-
Cypress Tests, Media Profiles background color - This week in Orchard (13/12/2020)
Query, This week in Orchard, Content field, Theme, RecipesHave you ever wondered how to write end-to-end tests for your Orchard Core application? Check out our current post to read about Cypress, which is a next generation front end testing tool built for the modern web. But first, let's start with the other exciting improvements!
-
User Picker Field, the new user ID - This week in Orchard (06/12/2020)
Admin UI, Permissions, Localization, This week in Orchard, Content field, Role, PermissionThis time we will do a little deep dive and check out some important changes in the code base of Orchard Core. But don't be scared, we promise you will like these changes, especially the demo about the new User Picker Field!
-
Why is my content part not recognized in Orchard Core? - Orchard Nuggets
Orchard Nuggets, Content field, Content partYou have implemented your
MyAwesomePart
but you cannot attach it to your content type using the dashboard because it's not showing in the Content Parts list (Content -> Content Definition -> Content Parts)?
The most possible reason for this that you haven't registered your implementation in the service container. To register your class in the service container head to the Startup.cs file of your module and in theConfigureServices
method add the following line:services.AddSingleton<ContentPart, MyAwesomePart>();
But if you are using the RC1 version of Orchard Core or newer you can use theAddContentPart
extension method, where you just only need to provide your content part:services.AddContentPart<MyAwesomePart>();
. TheAddContentPart
and theAddContentField
(that you can use to register your fields) can be found in the OrchardCore.ContentManagement namespace.
Another recommendation is to use the Part suffix when naming your class or cs file that contains your custom part. Don't forget to put it in a Models folder to follow the recommendation of the MVC (model-view-controller) software design pattern.
For more information about registering your Part check out the Startup.cs file of our Orchard Core Training Demo module, where we registered thePersonPart
in the service container. We also mentioned the new way of registering ContentParts and ContentFields in this post of our This week in Orchard series. -
Advanced content management and starting with theme development - Dojo Course
Tutorial, Dojo Course, Content field, Theme, ShapeUPDATE (2017-11-22): Dojo Course 2 is released with new, updated videos!
-
Forum favourites: model editors with shapes, accessing a shape's generated html and accessing content fields programmatically
Community resource, Development, Forum favourites, Content field, ShapeForum topics from the Orchard discussion board that we found interesting:
- "Passing my own data types to a view": using form field html helpers with dynamic models and in alternates defined with the shape attribute
- "Dynamically built html with Clay": capturing the generated html coming from a shape
- "How to access fields of a content item again?": ways of accessing a content field's value by using dynamic or statically typed extension methods