Hi Morphy,
The problem you reported is fixed now.
You can now download and update your plugins as described here.
Thank you again for reporting this!
Hi Nicolai,
Which version of the NeoFashion theme do you use?
Please note that we made the NeoFashion theme for nopCommerce 3.1 to be responsive and we have removed our helper and now we use a simple foreach statement.
But in any case the Model( which is a IList<ProductOverviewModel>) can be sorted just before the line where we use it. Something like this:
// sort the Model here just before passing it
@(Html.DataList7Spikes<ProductOverviewModel>(Model, 4,
@<div class="item-box">
@Html.Partial("_ProductBox", item)
</div>
Hi guys,
The resources your have specified above are not used anywhere and should not cause any warnings in the nopCommerce log.
I guess you have searched for all sevenspikes.xxx resources that are empty but they are actually never used. You will probably ask why there are resources that are never used. This is because of the format of the resource files that nopCommerce read. You don't have a flat file with keys and values but you have a xml file with nodes and some of these nodes are simply there to group other resources. That's why all these keys are added in nopCommerce but they are never used. A missing resource would be when you have a warning in the Log about a missing resource.
You are right that some of them are really missing and we will add them.
Please note that we have chosen a much easier approach to missing resources rather than running some upgrade scripts. Each plugin checks on application start if there are any missing resources and adds them. This way when we introduce a new feature and new settings in the administration of nopCommerce you will get the new resources without the need to run any upgrade scripts. All you have to do is to make sure you use the latest resources.xml file in Resources folder of your plugin.
I hope this information is useful!
Should you have any questions/suggestions please let us know!
Thanks
p.s: we will check each resource key that you reported just in case if we have missed them in any of the resource files of the plugins and will let you know if the resources of any of the plugins needs to be updated.