03-22-2012 06:28 AM
Hi, How can I edit the pages footer to customize it for our company : For now items ( Contact us | Blogs | Community | Forum | Documentation |) are all links to Nuxeo features.
Is it possible with studio ?
Thanks for your help, Patrice
03-22-2012 09:43 AM
This can be customized by overriding the nuxeo.war/incl/nuxeo_footer.xhtml template: these links are "hardcoded" right now.
Sadly this cannot be done from Studio right now but we'll try to make it possible in the future.
03-22-2012 09:43 AM
This can be customized by overriding the nuxeo.war/incl/nuxeo_footer.xhtml template: these links are "hardcoded" right now.
Sadly this cannot be done from Studio right now but we'll try to make it possible in the future.
10-08-2013 08:47 AM
Hello,
With studio extension point you can hide this actions with filters and add your action in category footer as example:
<extension target="org.nuxeo.ecm.platform.actions.ActionService" point="actions">
<action id="truc"
link="http://www.url.com" type="bare_link"
label="label.truc.blabla" order="50">
<category>FOOTER</category>
<properties>
<property name="target">_blank</property>
</properties>
</action>
<action id="footer_contact_us">
<filter-id>only_for_manager</filter-id>
</action>
<action id="footer_blogs">
<filter-id>only_for_manager</filter-id>
</action>
<action id="footer_community">
<filter-id>only_for_manager</filter-id>
</action>
<action id="footer_answers">
<filter-id>only_for_manager</filter-id>
</action>
<action id="footer_forum">
<filter-id>only_for_manager</filter-id>
</action>
<action id="footer_documentation">
<filter-id>only_for_manager</filter-id>
</action>
<action id="footer_twitter">
<filter-id>only_for_manager</filter-id>
</action>
<action id="footer_linkedin">
<filter-id>only_for_manager</filter-id>
</action>
</extension>
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.