To work around this problem, you can automatically turn off the display of categories and pages and manually configure the menu items in the configuration:
DISPLAY_CATEGORIES_ON_MENU = False DISPLAY_PAGES_ON_MENU = False MENUITEMS = ( ('Home', '/'), ('Archives', '/archives.html'), ('Tags', '/tags.html'), ('Category1', 'category/category1.html'), ('Category2', 'category/category2.html'), )
source share