So I've set up a blog for one of my groups, and although the cumulative posts show correctly using the blog archive, i.e. June (2) July (3)
when you click on a month it shows ALL of the blog posts instead of just showing the posts for the month in question. What am I missing?
You won't be modifying the transformation. You'll be modifying the repeater property "Path". The path is most likely set to /blog or something like that. It needs to be updated to ./%.
/blog
./%
Your repeater should have a path like ./% in it, this way it will only get the posts under the currently selected page/document.
Brenden - thanks so much. The web part that is pulling in the posts is RecentPosts1 and the transformation is cms.blogpost.recentposts: which is: <%@ Control Language="C#" AutoEventWireup="true" Inherits="CMS.Controls.CMSAbstractTransformation" %> <%# Eval("BlogPostTitle", true) %>
Am I on the wrong webpart/transformation?
YES! Brenden you made my day! Worked perfectly! Thank you!
Please, sign in to be able to submit a new answer.