Hi All,

Just installed v2.65 from v1.9 and am loving the ease of changing thing as oposed to the oldder version, my question relates to a post i was reading (see below) and the guy quotes "As always do not change the nop files directly but copy them to your theme folder" so as i understand i should copy any modified files to my themes folder, so i would be doubling up on the files but how does nop find them though?

Regards

Garrie


"@(Html.DataList<ProductOverviewModel>(Model.Products, 2,@<div class="item-box">@Html.Partial("_ProductBox", @item)</div>
Change the 2 into 3 like this:

@(Html.DataList<ProductOverviewModel>(Model.Products, 3,@<div class="item-box">@Html.Partial("_ProductBox", @item)</div>
You probably have to make some changes to _ProductBox also

As always do not change the nop files directly but copy them to your theme folder

Themes/YourTheme/Views/Catalog/CategoryTemplate.ProductsInGridOrLines.cshtml"