TYPO3 Logo
Start
Release: main

Loading data.

  • Introduction
    • Screenshots
      • Frontend
        • Desktop
        • Smartphone
      • Backend
      • Launch it!
    • What does it do?
    • What do you need?
    • Audience
  • Users
    • Setup
      • Module
      • Layouts
    • Best Practice
      • Address data
      • Effects
      • Flexible Video
      • Gridelements
        • Background Image
      • Navigation
        • Mega-Menu
      • Layouts
        • Website
        • Page
          • Blue
          • Bronze
          • Silver
          • Newsletter
          • Default
        • Elements
          • General
          • Same Height for all columns
      • Page Media
      • Panels and Callouts
      • Social media icons
      • Spell Check
      • Styling
      • Visibility
  • Administrators
    • Installation
      • Launch it!
      • Classic
        • Extensions
        • Gridelements
        • Start
    • Setup
      • Extension Manager
        • Backend Layouts
        • Backend Style
        • Language
        • Module
        • TCA
      • Privacy
        • Forms
    • First Steps
      • Pages
      • Navigation
    • Best Practice
      • Backend Layouts
        • Layout for folders
        • Slide and Inheritance
      • CSS
      • +Customer
      • Frameworks
        • Bootstrap
        • Foundation
      • Indexed Search
      • Modals
        • CSS
      • Language / Localisation
        • Language Menu
      • HTML
      • Layouts
        • Website
        • Page
      • Lightbox
        • API (tt_content)
        • Calendar, Locations, News, Organisers (EXT:org)
        • News (EXT:tx_news)
        • Quick Shop (EXT:quickshop)
      • Newsletter
        • Categories
          • Exclusive
          • Rename
        • Extensions
        • Dialog
        • Popup
      • Page Media
      • RSS Icon
      • Rich Text Editor
        • Additional Plugins
        • Search, spell check, youtube
      • Search Engine
        • Facetted Search
          • Extensions
      • Themes
  • Developers
    • Welcome
    • Kitchen Sink
      • Page Media
    • Extensions from Git
  • Help
    • Support
    • Credits
    • Links
  • Known Bugs
  • Upgrades
    • EXT:start
      • 8.2
      • 6.0
        • Grid Elements
          • Analysis
          • Upgrade
          • Clean Up
      • 5.3
        • Grid Elements
          • Start: Columns 2
          • Start: Columns 3
          • Start: Columns 4
          • Start: Columns 5
          • Start: Columns 6
    • TYPO3
      • TYPO3 10.4
      • TYPO3 9.5
        • Extensions
          • Grid Elements
      • TYPO3 8.7
        • Good to know
        • Extensions
          • CSS Styled Content
          • Fluid Styled Content
          • Foundation Framework
          • Grid Elements
          • Slick
        • File List
        • Headers
        • Indentation and Frames
        • Menus
        • Reference Index
        • Space before and after
        • Table
        • In Case of trouble
    • Workarounds
      • ChangeLog #i0215 (EXT:gridelements)
        • SQL Statements
        • Template
      • ChangeLog #i0214 (EXT:gridelements)
  • What's new
    • 7.x
    • 6.x
    • 5.x
    • 4.x
      • 4.7
      • 4.6
      • 4.5
      • 4.4
      • 4.2
  • Alphabetical Index
  • Sitemap

PAGE CONTENTS

  • Menus
    • Update
    • SELECT
    • UPDATE
    • Manually
  1. Start
  2. Upgrades
  3. TYPO3
  4. TYPO3 8.7
  5. Menus
View source

Display settings


Color scheme of code blocks:


Menus¶

Update¶

Some menu types are lost in TYPO3 8.7.

You must update these content elements by a SQL statement or manually.

SELECT¶

-- Sitemap
SELECT `uid`, `pid`, `header`, `CType`, `menu_type` FROM `tt_content` WHERE `CType` = 'menu' AND `menu_type` = 2;
-- Menu Pages
SELECT `uid`, `pid`, `header`, `CType`, `menu_type` FROM `tt_content` WHERE `CType` = 'menu' AND `menu_type` = '0';
-- Menu Subpages
SELECT `uid`, `pid`, `header`, `CType`, `menu_type` FROM `tt_content` WHERE `CType` = 'menu' AND `menu_type` = 1;
SELECT `uid`, `pid`, `header`, `CType`, `menu_type` FROM `tt_content` WHERE `CType` = 'menu' AND `menu_type` = 4;
-- Section Index
SELECT `uid`, `pid`, `header`, `CType`, `menu_type` FROM `tt_content` WHERE `CType` = 'menu' AND `menu_type` = 3;
-- Menu Start
SELECT `uid`, `pid`, `header`, `CType` FROM `tt_content` WHERE `CType` LIKE 'menu_start%';

UPDATE¶

-- Sitemap
UPDATE `tt_content` SET `CType` = 'menu_sitemap', `menu_type` = NULL WHERE `tt_content`.`CType` = 'menu' AND `menu_type` = 2;
-- Menu Pages
UPDATE `tt_content` SET `CType` = 'menu_pages', `menu_type` = NULL WHERE `tt_content`.`CType` = 'menu' AND `menu_type` = '0';
-- Menu Subpages
UPDATE `tt_content` SET `CType` = 'menu_subpages', `menu_type` = NULL WHERE `tt_content`.`CType` = 'menu' AND `menu_type` = 1;
UPDATE `tt_content` SET `CType` = 'menu_subpages', `menu_type` = NULL WHERE `tt_content`.`CType` = 'menu' AND `menu_type` = 4;
-- Section Index
UPDATE `tt_content` SET `CType` = 'menu_section', `menu_type` = NULL WHERE `tt_content`.`CType` = 'menu' AND `menu_type` = 3;
-- Menu Start
UPDATE `tt_content` SET `CType` = 'menu' WHERE `tt_content`.`CType` LIKE 'menu_start%';

Manually¶

Sample for [ INVALID VALUE ("menu_startFoundationSideNavFromDirs") ]

Edit the Content Element

  • Move Type

    • from: [ INVALID VALUE ("menu_startFoundationSideNavFromDirs") ]

    • to: [Start: Menus]

  • Previous
  • Next

Last updated: Mar 29, 2023 13:56

Last rendered: Mar 29, 2023 13:58

  • TYPO3 Theme 4.7.9
  • DRC v3.0.dev30
© Copyright 2014-2022
  • Legal Notice
  • Privacy Policy
  • Code of Conduct