Hi Michael,
Many thanks for the reply, it does look like that plugin is what I need to achieve what I am after. I have a couple of issues but will post those over at the other thread.
I do have what I think is a more general question relating to categories though that I wonder if anyone can help with.
* Found the solution to this problem in Weblog Global preferences 😊 Just the plugin that I am having issues with now!
Auto-Assign Category Parents
If set to “yes”, when new entries are submitted, the parent category will be automatically assigned whenever you choose a child category
When posting into a sub category it also seems to be posting into the parent category and vice versa. Is this something that I also need to do with the above plugin or does expression engine have the native ability to do this?
My code for displaying the content for in the subpages is quite simple as follows:
{exp:weblog:entries weblog="busdev" limit="15"}
{name}
{address}
{/exp:weblog:entries}
This displays the content for a parent category with no problems but as mentioned it also displays content that has been posted in a child category underneath it.
Any help would be hugely appreciated as it is driving me nuts!
* Edit *
I don’t seem to be able to post in the plugin thread for some reason so will ask here incase anyone can help.
The problem I have having is that when clicking on Any menu option, I get all of the sub categories for all of the menu options even when clicking on a menu option that doesn’t itself have any sub categories associated with it. Any thoughts on this? my code for the menu is below
{exp:weblog:categories category_group="5" weblog="busdev"}
{exp:child_categories parent="{category_id}" child_categories_sort_by="custom" child_categories_sort_direction="asc" show_empty="no" entries_sort_by="date" entries_sort_direction="asc" entries_limit="3" site="1"}
<h1>{category_id}</h1>
{child_category_start}
<a href="http://{path=BusinessDevelopment/BusinessDevelopmentSub/}">{child_category_name}</a>
{child_category_end}
{/exp:child_categories}
{/exp:weblog:categories}