Installation and configuring plug-in NopArticles How you remove articles from Product page. How to integrate with SevenSpikes.MegaMenu Step 1. Installing the plug-in. Copy the plug-in into the folder with plug-ins. In admin menu select “Configuration/Plugin”. Click “Reload list of plugins” button. Step 2. Find the plug-in and next to it click “Install”. Find the plug-in and click “Configure”. Create sample data. Manage group of article. Step 6. Manage articles. Step 7. Sitemap. Step 8. The example is shown in the picture. How you remove articles from Product page? Open file WidgetZones.xml and remove line <WidgetZone>productdetails_bottom</WidgetZone> Support Search in articles. Step 11. Add Support FullText Search in articles. Enable Full-Text and run Article_FullText_Enable.sql. Step 12. How to allow article sorting. Enable Allow article sorting in Configure page. For older version you must update List.cshtml or copy code to your List.cshtml. <div class="article-selectors"> How to integrate with SevenSpikes.MegaMenu. Open MegaMenu.cshtml and add this line. <li><a href="@Url.RouteUrl("Articles",new { action = "List", articlegroupId = 0})">@T("FoxNetSoft.Plugin.Misc.Articles.LinkButton")</a></li> Refresh the page.
@*sorting*@
@if (Model.PagingFilteringContext.AllowArticleSorting && Model.ArticleReads.Count > 0)
{
<div class="article-sorting">
<span>@T("FoxNetSoft.Plugin.Misc.Articles.ArticleRead.OrderBy")</span>
@Html.DropDownList("articles-orderby", Model.PagingFilteringContext.AvailableSortOptions, new { onchange = "setLocation(this.value);" })
</div>
}
</div>