Is there a way to make every content type default to the parent in the menu.
ie say i have content type called “cats” . How do i make all “cats” automatically sit inside “pet” menu item. Also can i alphabetically sort “cats” in the menu
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could do this programatically, with a custom module.
in hook_nodeapi() op==”insert”, you can check for the $node->type and then use menu_link_save() to create the menu item.