Hey @earl_d,
Yes it is. Just enable Regions in the Settings (and add some regions of course). Your maps will have the regions sidebar by default. To hide the Regions-Sidebar use the shortcode attribute disable_regions=”true” like so:
[open-user-map disable_regions="true"]
This will hide the sidebar for this individual map.
Best regards,
Daniel
Thread Starter
Earl_D
(@earl_d)
[open-user-map disable_regions="true" region="Europe"]
Can I use the shortcode above to show the Europe region map without sidebar? It doesn’t work for me.
-
This reply was modified 2 years, 9 months ago by
Earl_D.
Hi @earl_d,
This doesn’t work as disable_regions=”true” disables the regions feature for this map entirely. However – you can just hide it with CSS:
.open-user-map .box-wrap.oum-regions-layout-2 > .tab-wrap {
display: none !important;
}
.open-user-map .box-wrap.oum-regions-layout-2 > .map-wrap {
width: 100% !important;
}
Thread Starter
Earl_D
(@earl_d)
ok I will give it a try and see if it works for what I am trying to do.