Posted by stopshinal on March 26, 2012 at 8:36pm
3 followers
Jump to:
| Project: | Open Enterprise |
| Component: | Code |
| Category: | support request |
| Priority: | major |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
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
#1
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.
#2
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?
#3
I'm sending this to Tom to see what we can do about it.
#4
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.