Generate RSS Feed Based on Retrieved Kentico Pages
In Kentico 13, you can retrieve pages using DocumentHelper.GetDocuments and then generate a standard RSS feed based on the retrieved pages. The following code […]
In Kentico 13, you can retrieve pages using DocumentHelper.GetDocuments and then generate a standard RSS feed based on the retrieved pages. The following code […]
In C# and Razor views (Kentico 12/13), you can escape special characters by using the Html.Raw() method or the @Html.Raw() helper in Razor syntax. […]
In Kentico 13, you can use the MultiDocumentQuery or DocumentQuery class to retrieve pages based on certain tags and categories. Using MultiDocumentQuery Replace “/YourPagePathHere/” […]
Displaying content based on a certain tag passed through a query string involves retrieving the tag value from the query string parameter and using […]
In Kentico, filtering search results by tags can be achieved using the built-in functionalities provided by the platform. Here’s a general guide on how […]
In Kentico 13 and Xperience, you can retrieve page tags by accessing the DocumentTags property of the TreeNode object. Replace “/YourPagePath” with the actual […]
To display the URL of a specific page in Kentico Xperience, you can retrieve the NodeAliasPath of the page and construct its URL based […]
While in Kentico Edit Mode you might want to hide or not load certain content or scripts which slows the editing process and only […]
Transformations are very powerful tools within Kentico and very useful in rendering content using templates for Document Types, Custom Table data and other content. […]
If you need your menu navigation to reflect properties from Properties >> Navigation section of a page, you need to implement a logic to […]