How to Hide More Addon link in Add functuinally pages

Permalink
hi all..
i know it's silly question but i cannot find it, i want to hide more addon link & more theme link in Add Functionalty, where did the file that link put on?

thank you.

fastcrash
 
DWD replied on at Permalink Reply
Copy
/concrete/controllers/dashboard/install.php
to
/controllers/dashboard/install.php
then edit /controllers/dashboard/install.php
Find
$subnav = array(
   array(View::url('/dashboard/install'), t('Installed and Available'), true),
   array(View::url('/dashboard/install', 'browse', 'themes'), t('More Themes'), false),
   array(View::url('/dashboard/install', 'browse', 'addons'), t('More Add-Ons'), false)
      );

and replace with
$subnav = array(
   array(View::url('/dashboard/install'), t('Installed and Available'), true) 
   //array(View::url('/dashboard/install', 'browse', 'themes'), t('More Themes'), false)//remove More Themes
   //array(View::url('/dashboard/install', 'browse', 'addons'), t('More Add-Ons'), false)//remove More Add-ons
      );

HTH
-Dave