Nuxeo 5.5+Studio : Page Footer branding

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

0 votes

2 answers

3028 views

ANSWER



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.

1 votes



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>
1 votes