Correction to no wrappers content area renderer
Referring to Krzysztof Morcinek's blog post which is used quite a lot in the epi world, thought to share a small correction to it.
The below piece of code from the blog post renders all the items while you're in edit mode which doesn't allow users to test personalized content.
_contentRequestContext.IsInEditMode(helper.ViewContext.HttpContext) ? contentArea.Contents : contentArea.FilteredContents
So, this piece of code can be safely replaced with the below which will just render the same items rendered by the out of the box content area renderer which allows users to test how personalized content looks like.
contentArea.FilteredItems
btw, just a side note - this lib (https://github.com/valdisiljuconoks/EPiBootstrapArea) does the same thing and lot more. maybe worth to checkout and reduce code on project's side :)