atzmonca wrote:hi,
now when i mouse over the "about us" link, the text shown on popup
how can i fix that that only click on "about us" will redirect the user to the "about us" page?
Hi atzmonca,
You need to edit this file:
Plugins\SevenSpikes.Nop.Plugins.MegaMenu\Views\MegaMenu\MegaMenu.cshtmlThe changes you need to make are described in the file above. Simply comment some of the code and uncomment the other.
Comment this line of code:
<li>@aboutUsTopicBlock</li>
Uncomment the line below:
<li><a href="@Url.RouteUrl("Topic", new { SystemName = "aboutus" })">@T("AboutUs")</a></li>
Thanks