How to add my own Links to the Shop Menus

If you want to add a link to existing shop menus, you need to create a topic that is rendered as a widget within the admin area SmartStore.NET Admin > CMS > Topics > New. Don't forget to check the option Render as HTML widget. Don't check the box Add wrapper around content.

There are four options to place the link. Enter at least one of the following widget-zones to the input field for Widget zone:

  • infoblock_before
  • infoblock_after
  • header_menu_before
  • header_menu_after
  • megamenu_before_first_item
  • megamenu_after_last_item

As menus in SmartStore.NET are always rendered as ul elements and links are wrapped with li tags, you need to create your HTML code according to this structure.

Example
<li>
	<a href="#">My Link</a>
</li>