Hi all. I have my content type called "articoli" and I have create a category for this content type. Via pathauto, I have created this alias for the articoli's term: "manuali/[catpath]".
Now my necessity is to create a sub-homepage for the "articoli" content type and the url must be "/articoli". At the moment if I go into /articoli page I get a list of all articoli cotent type's node. How can I create my subhome page ? I have tried to create a module for this problem:
$items[] = array( 'title' => '', 'path' => 'articoli', 'access' => true, 'callback' => 'mw_articoli_main', 'type' => MENU_CALLBACK );
But without success.
Is my only solutions use a my module that call views and simulate /articoli/path ?
Please help me.
M.