Category: Sitefinity

API Code Sample Configuration Sitefinity Toolbox Widgets

Registering Toolbox Widgets During Sitefinity Module Installation

When developing a Sitefinity Intra-Site Module you’ll likely be creating public widgets that your users will be dropping onto pages. Rather than relying on your users to manually add them to the toolbox, you can register these controls yourself during module installation. Here is a demo code snippet that shows an example of how you […]

CONTINUE READING
Content Blocks Customization Helpful Tools Sitefinity Sitefinity Widgets Templates Video Viewmap

Custom Templates with the Sitefinity ViewMap: Removing Social Links from Content Blocks

The ViewMap is a Sitefinity setting that globally maps Sitefinity control types to specific custom templates. You can use this go override the default templates for virtually any Sitefinity control. In this video I’ll demonstrate how the Viewmap, along with a little help from Telerik’s free JustDecompile utility, allow you to remove the Social Links […]

CONTINUE READING
Blogs Code Sample Sitefinity Taxonomy Widgets

Filtering the Sitefinity Taxonomy Widget for a Specific Blog

The classification widgets in Sitefinity allows you to display the list of taxonomy names (such as categories or tags) used by content items in Sitefinity. You can specify a specific content type (even Dynamic Modules with this workaround) and to allow your visitors to filter the content items. Custom Blogs Taxonomy Control However, if you […]

CONTINUE READING
Pages Regular Expressions SEO Sitefinity Validation Video

Enabling Special Characters in Sitefinity Page Titles

By default, Sitefinity disallows special characters in the SEO title for a page. This video demonstrates how to override this setting, allowing you to specify different restrictions (or remove them entirely). http://blip.tv/play/AYL0%2BDUC.html?p=1 Regular Expressions You may have noticed that for the first regex property, I replaced it with [^\S\s]. The reason for this is that […]

CONTINUE READING
Code Sample Pages Sitefinity Widgets

Programmatically Adding Controls to a Sitefinity Page

The PageManager in Sitefinity has a method called CreateControl that is overloaded to allow both Compiled (dll) controls as well as simple User Controls (.ascx files) to be initialized and added to a Sitefinity page. Both overloads require a string containing the name of the ContentPlaceholder that will hold the control, which is defined in […]

CONTINUE READING