At the top of my views I have what are apparently known as "action links", and i'm not sure how to make them go away. They are not from any menu that I can tell, and they are not from the view, from what I can tell.

ALSO

On all of the content entry forms I make, there is a "Machine Name" field at the bottom. I'm not sure how to make this go away.

Please help!

Comments

randallknutson’s picture

Action links are a part of enterprise_base. They will only show up for users with permission to add or administer the content type.

Machine Name is a part of the defaultcontent module. If you turn it off it will go away.

stopshinal’s picture

Can I disable the action links completely, for all roles, even those that need to add/view/edit that content type? Is there a place to manage action links? I've browsed menu with no luck, which is odd?
Also - what can be done about those action links that are appearing on a view?

randallknutson’s picture

I'm sending this to Tom to see what we can do about it.

August1914’s picture

If you're theming from Navin, you could remove the line
<?php if ($action_links): ?><ul class="action-links"><?php print render($action_links); ?></ul><?php endif; ?>
from templates/region--content.tpl.php

It looks like there is support for turning this off in the base alpha (theme): function alpha_toggle in alpha.inc, so it seems like adding
settings[alpha_toggle_action_links] = ''
in your (alpha-derived) theme.info ought to work, but it doesn't for me, so I went the tpl.php route instead.