diff --git a/src/redux/root/init.thunks.ts b/src/redux/root/init.thunks.ts
index 23aa9368fc288cbf418e7c5b10ab3221d09df23b..e28be3dc1a69bbd898e101f3ba59dcd3e4c70867 100644
--- a/src/redux/root/init.thunks.ts
+++ b/src/redux/root/init.thunks.ts
@@ -1,10 +1,11 @@
 import { PROJECT_ID } from '@/constants';
-import { openSearchDrawerWithSelectedTab } from '@/redux/drawer/drawer.slice';
+import { openOverlaysDrawer, openSearchDrawerWithSelectedTab } from '@/redux/drawer/drawer.slice';
 import { AppDispatch } from '@/redux/store';
 import { QueryData } from '@/types/query';
 import { getDefaultSearchTab } from '@/components/FunctionalArea/TopBar/SearchBar/SearchBar.utils';
 import { PluginsManager } from '@/services/pluginsManager';
 import { createAsyncThunk } from '@reduxjs/toolkit';
+import { ZERO } from '@/constants/common';
 import { getAllBackgroundsByProjectId } from '../backgrounds/backgrounds.thunks';
 import { getConfiguration, getConfigurationOptions } from '../configuration/configuration.thunks';
 import {
@@ -25,6 +26,7 @@ import { setPerfectMatch } from '../search/search.slice';
 import { getSearchData } from '../search/search.thunks';
 import { getStatisticsById } from '../statistics/statistics.thunks';
 import { getSessionValid } from '../user/user.thunks';
+import { openPluginsDrawer, setCurrentDrawerPluginHash } from '../plugins/plugins.slice';
 
 interface InitializeAppParams {
   queryData: QueryData;
@@ -44,6 +46,13 @@ export const fetchInitialAppData = createAsyncThunk<
         setHashedPlugin: PluginsManager.setHashedPlugin,
       }),
     );
+
+    const hash = queryData.pluginsId[ZERO];
+
+    if (hash) {
+      dispatch(openPluginsDrawer());
+      dispatch(setCurrentDrawerPluginHash(hash));
+    }
   }
 
   /** Fetch all data required for rendering map */
@@ -90,5 +99,9 @@ export const fetchInitialAppData = createAsyncThunk<
   /** fetch overlays  */
   if (queryData.overlaysId) {
     dispatch(getInitOverlays({ overlaysId: queryData.overlaysId }));
+
+    if (!queryData.searchValue) {
+      dispatch(openOverlaysDrawer());
+    }
   }
 });