Remove the "Short Description" from the Category view

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
11 years ago
On the screens that have multiple products, like the Category view or the manufacturers view, there is a place for the short description under the picture, but above the product name.  Since I'm not using a short description, I would like to remove this.  It seems to take up a bunch of space that I could increase the number of products.  Does anybody know how to do this?
11 years ago
If I have understood your question Correctly

Nop.Web/Presentation/Views/CategoryTemplate

Comment out the following line of code to remove the description - 2.6 I will add..

   
@*description*@
  @if (!String.IsNullOrWhiteSpace(Model.Description))
  {
        <div class="category-description">
            @Html.Raw(Model.Description)
        </div>
        <div class="clear">
        </div>
    }


I think this is the code. Test test test test. :D
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.