Damir wrote:Hi, what's the easiest way of showing topbar, even if we don't use any selectors? Right now there is a widget placed behind the logo, and topbar is not even in the code, so where can we change that? That should've been taken care of in the plugin I suppose? Not everyone has those selectors, but would maybe want to have a top bar...
There is a header_before widget in nopCommerce, but it is right above the language selector's container.
Our plugin does not support this widget zone by default. However, you can easily add it by editing the
SupportedWidgetZones.xml file in the plugin root folder. You just need to add the line:
<WidgetZone>header_before</WidgetZone>
You can add it just after
<WidgetZone>header</WidgetZone>
for example.
Once you restart the application header_before will be available as a widget zone for the HTML widgets plugin.
Your other option would be to add a custom widget zone on the far left from the language selector.