Removing "Popular tags" and "Categories" from pages

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
Il y a 6 ans
I'm running Version 3.8 and I'm trying to remove the "Popular Tags" and "Categories" section from the side of every page.http://technink.com/submit
Il y a 6 ans
/Views/Shared/_ColumnsTwo.cshtml

look for this line:


        @Html.Action("CategoryNavigation", "Catalog", new { currentCategoryId = currentCategoryId, currentProductId = currentProductId })



..and this line should be just below it:

        @Html.Action("PopularProductTags", "Catalog")


You just need to comment those two lines out, like this:

 @*       @Html.Action("CategoryNavigation", "Catalog", new { currentCategoryId = currentCategoryId, currentProductId = currentProductId })  *@
  

 @*       @Html.Action("PopularProductTags", "Catalog") *@
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.