From a36d739bbbf3f388bd051c5a9b763766555430ec Mon Sep 17 00:00:00 2001 From: Ash Joseph Date: Tue, 23 Oct 2018 12:14:33 +0100 Subject: [PATCH 1/2] New KB doc on dissapearing submenus in the CP --- content/collections/kb/cannot-see-cp-submenus.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 content/collections/kb/cannot-see-cp-submenus.md diff --git a/content/collections/kb/cannot-see-cp-submenus.md b/content/collections/kb/cannot-see-cp-submenus.md new file mode 100644 index 00000000..95dccd18 --- /dev/null +++ b/content/collections/kb/cannot-see-cp-submenus.md @@ -0,0 +1,15 @@ +--- +title: Control panel submenus not showing +kb_categories: + - Troubleshooting Common Scenarios +--- +Are the submenus under collections and users not showing in the CP? If your site is using https, it can cause issues if your environment is expecting http. You can fix this in by changing your site URL in `system.yaml`: +``` +locales: +en: + full: en_GB + name: English + url: "https://example.com" + ``` + + Or `APP_URL=https://example.com` in your `.env` From 11ec474136839eba857513a343ca5f704dea609f Mon Sep 17 00:00:00 2001 From: Jason Varga Date: Wed, 5 Dec 2018 13:57:47 +0000 Subject: [PATCH 2/2] Apply suggestions from code review Co-Authored-By: TeriyakiBomb --- content/collections/kb/cannot-see-cp-submenus.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/collections/kb/cannot-see-cp-submenus.md b/content/collections/kb/cannot-see-cp-submenus.md index 95dccd18..484d9cac 100644 --- a/content/collections/kb/cannot-see-cp-submenus.md +++ b/content/collections/kb/cannot-see-cp-submenus.md @@ -2,6 +2,7 @@ title: Control panel submenus not showing kb_categories: - Troubleshooting Common Scenarios +id: e86f3460-d6ca-11e8-b568-0800200c9a66 --- Are the submenus under collections and users not showing in the CP? If your site is using https, it can cause issues if your environment is expecting http. You can fix this in by changing your site URL in `system.yaml`: ```