+ Footer
The typoscript for the footer menu will be put on the root page in a sub template called "+ Footer" and contains the following typoscript:
lib.footer_left = COA
lib.footer_left {
wrap = <div class="menu_footer menu_ul"><ul>|</ul></div>
10 = TEXT
10 {
data = date:U
strftime = %Y
wrap = <li>© 2011-| TYPO3Buddy</li><li>|</li>
}
20 = HMENU
20 {
special = directory
# special.value will contain the page ID of the Footer menu page
special.value = 4
1 = TMENU
1 {
target = _self
NO {
allWrap = <li>|</li><li>|</li>|*|<li>|</li><li>|</li>|*|<li>|</li>
wrap = <div class="footer_no">|</div>
}
}
}
}lib.footer_right = TEXT
lib.footer_right.value (
<!-- your multilined code here -->
<!-- your multilined code here -->
)
As mentioned in the comment, the special.value property needs to contain the page ID of the Footer menu page. To find out the page ID of your footer menu page, hover on it in the page tree, wait, and the page ID will pop up. You also can edit the page properties of the Footer menu page; you'll see the page ID in the right bottom corner of the edit window. It looks like "Page [4]". In this example the page ID of the footer menu is 4.
Don't forget to include the above sub template in the typoscript main template.
Kind reminder! This tutorial has been tested with and updated for TYPO3 v10. Please keep in mind that the tutorial has once been set up for TYPO3 v6. It follows some deprecated conventions. If so, this will be mentioned in the tutorial.