Page 1 of 1
can you show menu text instead of title in content admin page
Posted: Wed Nov 22, 2006 4:42 pm
by dont
Why do you see the title of the page and not the menu text?
Can I change this?
Re: can you show menu text instead of title in content admin page
Posted: Wed Nov 22, 2006 5:21 pm
by dont
I edit admin/liscontent.php
line 660
$thelist .= "Id()."&page=".$page."\">".$one->Name()."\n";
replaced with
$thelist .= "Id()."&page=".$page."\">".$one->MenuText()."\n";
give's the right effect,
But I want to change it also when you order the page's
I now it this line 414:
$output .= '('.$contentops->CreateFriendlyHierarchyPosition($content->mHierarchy).') '.$content->mName;
How can I change it sow it also give's the menu text instead of the title text
Re: can you show menu text instead of title in content admin page
Posted: Fri Dec 01, 2006 1:59 pm
by Dr.CSS
Did you try replacing this with MenuText...
$output .= '('.$contentops->CreateFriendlyHierarchyPosition($content->mHierarchy).') '.$content->mName;
Re: can you show menu text instead of title in content admin page
Posted: Fri Dec 01, 2006 4:06 pm
by Ted
$content->MenuText() should work.