How to remove "contact" button in sub footer portlet in management console?

Hello, I am currently trying to edit the lower footer of my website through Plone Classic GUI. Awhile ago, based on other documentation, I figured out that to edit the upper portion of the footer, I needed to change files in the backend management console, so that I was able to take care of fine. However the location of the lower part of the footer, which contains links to "Site Map", "Accessibility", and "Contact" in the management console eludes me. Does anybody happen to know the location of this file in the management console?

Thanks in advance for any help!

P.S: I am also trying to find the location of the /contact-info info page in the management console as well, as I currently cannot edit that directly on the website

In zmi portal_buttons you can hide the

That is an action you can control through:

Look for "Contact".

@espenmn answer is also right, @@actions-controlpanel is a more user-friendly solution of his answer.

You can even edit the action demo.plone.org and replace contact-info with whatever.

The contact-info view is defined here:

[ale@avo packages]$ rg name..contact-info
Products/CMFPlone/browser/configure.zcml
163:      name="contact-info"
170:      name="contact-info-email"

See Products.CMFPlone/Products/CMFPlone/browser/configure.zcml at 938a8b1eec72f757b8325560ddd6515da3f3ce3d · plone/Products.CMFPlone · GitHub

If I understand correctly (and you want to change the 'contact form':

Install 'collective.easyform' and add a new form with id 'contact-info'.

(this is much easier than fixing the form, I think)

1 Like