I\'ve made a title of my resources as a link to a Show action. Now I want to remove that link form default_actions.
default_actions
actions :all, :except =
More recent versions support a call to actions method within the resource definition:
ActiveAdmin.register Foo do actions :all, except: [:edit, :destroy] #just show ...