From ccf7de054bf29665668d7673a2b886ad68424f15 Mon Sep 17 00:00:00 2001 From: Tadas Labutis Date: Tue, 5 May 2026 13:09:17 +0300 Subject: [PATCH] Fix DPDBaltics sidebar item disappearing on module pages CSS rule #subtab-AdminDPDBalticsModule { display: none } hid the entire
  • wrapping the sidebar link, so the DPDBaltics entry vanished whenever a DPDBaltics admin controller loaded global_module.css. Refined selector targets only nested submenu elements, keeping the parent link visible. --- CHANGELOG.md | 3 ++- views/css/admin/global_module.css | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46acd884..f9244a38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -198,4 +198,5 @@ - Fixed additional validation for supercheckout module using currentcontroller variable - Fixed automatic PUDO point pre-selection in LIST mode - Fixed PUDO shipment CSS styling -- Added timeframes to shipment request \ No newline at end of file +- Added timeframes to shipment request +- Fixed DPDBaltics menu item disappearing from sidebar when navigating to module pages \ No newline at end of file diff --git a/views/css/admin/global_module.css b/views/css/admin/global_module.css index 521ba1d7..03093bfe 100644 --- a/views/css/admin/global_module.css +++ b/views/css/admin/global_module.css @@ -16,6 +16,7 @@ * @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0 */ -#subtab-AdminDPDBalticsModule{ +#subtab-AdminDPDBalticsModule > ul, +#subtab-AdminDPDBalticsModule .submenu { display: none; }