I have some content set up on my home page node eg: Telephone number, email address etc.
These should appear on all template pages, which I do in the normal way recursive="true"
It works fine on all of my templates and the blog landing page, but no recursive content is visible on the blog post page? We've had this issue with a couple of sites recently.
I am using Umbraco v4.11.1 and uBlogsy version 2.1.1.1
Recursive Content not visible on blog post
Hello,
I have some content set up on my home page node eg: Telephone number, email address etc.
These should appear on all template pages, which I do in the normal way recursive="true"
It works fine on all of my templates and the blog landing page, but no recursive content is visible on the blog post page? We've had this issue with a couple of sites recently.
I am using Umbraco v4.11.1 and uBlogsy version 2.1.1.1
Any guidance much appreciated!
My content structure is:
- Home
- - About
- - Blog
- - - Posts
- - - - 2013
- - - - - Feb
- - - - - - Test post
- - Contact
Hey Heather,
How are you trying to access the recursive data? Razor, XSLT or just in the template via Umbraco field?
Rich
Just the umbraco:item field in a template
Strange, have you checked the value is definitely in /App_Data/Umbraco.Config file?
Rich
Yes it's in there. The blog landing and blog post read from the same master file. On all of my other pages & the landing page it works fine.
It's just the blog post page that ins't pulling these in.
Hmm, very strange, sorry to say I don't have the answer.
Could be something to do with the DateFolders, you could you try adding a Blog post page under the 'Posts' level to test?
I have the same issue with Umbraco v 4.11.1.
My quick fix was using Razor instead
<umbraco:Macro Language="cshtml" runat="server" > <h1>@Html.Raw(Model._footerAboutHeading)</h1> </umbraco:Macro>
Thank you, i'll give it a try out!
is working on a reply...