Posts to my blog can only be in one category, but the categoreis you can chose from are in a hierarchy, and I would like users to see this hierarchy when they select a category. If I have got the category hierarchy workign fine if I have supportsMultipleCategories to Yes, however the moment I set supportsMultipleCategories to No, the category hierarchy is lost.
Any ideas on how to show the category hierarchy with suportsMultipleCategories set to no? Below is my full WLWManifest file.
<manifest xmlns="http://schemas.microsoft.com/wlw/manifest/weblog">
<weblog>
<imageUrl>http://localhost/favicon.ico</imageUrl>
<homepageLinkText>View Blog</homepageLinkText>
</weblog>
<options>
<supportsExtendedEntries>No</supportsExtendedEntries>
<supportsExcerpt>No</supportsExcerpt>
<supportsCustomDate>No</supportsCustomDate>
<supportsEmptyTitles>No</supportsEmptyTitles>
<supportsEmbeds>No</supportsEmbeds>
<supportsPostAsDraft>No</supportsPostAsDraft>
<supportsSlug>No</supportsSlug>
<supportsCategoriesInline>No</supportsCategoriesInline>
<supportsNewCategories>No</supportsNewCategories>
<supportsNewCategoriesInline>No</supportsNewCategoriesInline>
<supportsMultipleCategories>No</supportsMultipleCategories>
<supportsAutoUpdate>Yes</supportsAutoUpdate>
<supportsKeywords>Yes</supportsKeywords>
<supportsFileUpload>Yes</supportsFileUpload>
<supportsCategories>Yes</supportsCategories>
<supportsHierarchicalCategories>Yes</supportsHierarchicalCategories>
</options>
<views>
<default>WebLayout</default>
<view type="WebLayout" src="http://localhost/weblayout.ashx" />
<view type="WebPreview" src="http://localhost/webpreview.ashx" />
</views>
</manifest>