Hi incredible,
It seems that you have copied the SevenSpikes plugins into another folder.
Go through all of your plugin folders and delete any folder, which name starts with SevenSpikes. After that go to our website, go to your account and download the package for the NopUltimatePluginCollection. Open the package and open the .zip file for your version of nopCommerce. After that extract the .zip file in the Plugins folder of your website.
When the extraction is complete, go to the administration page of your website. Go to Configuration => Plugins and click on the Reload list of plugins button.
Once the plugins are reloaded and the SevenSpikes plugins appear. First install the Core plugin and after that all other plugins.
Have a good day!
Ivan Stoyanov
Hi verdan,
Create a copy of our view located in Plugins/SevenSpikes.Nop.AjaxFilters/Views/Catalog7Spikes. The copy should be located in the same folder. After that rename the view to DemoCategoryTemplate.ProductsInGridOrLines. Open it and make the same changes to it that you did to the original CategotyTemplate view to create the new Demo view.
Best regards,
Ivan Stoyanov
@if (Model.AutoCompleteEnabled)
{
<text>
$(function () {
$('#small-searchterms').autocomplete({
delay: 500,
minLength: @(Model.SearchTermMinimumLength.ToString()),
source: '@(Url.RouteUrl("ProductSearchAutoComplete"))',
select: function( event, ui ) {
$("#small-searchterms").val(ui.item.label);
setLocation(ui.item.producturl);
return false;
}
})
.data("autocomplete")._renderItem = function( ul, item ) {
var t = item.label;
//html encode
t = htmlEncode(t);
return $("<li></li>")
.data("item.autocomplete", item)
.append("<a>@(Model.ShowProductImagesInSearchAutoComplete ? Html.Raw("<img src='\" + item.productpictureurl + \"'>") : null )" + t + "</a>")
.appendTo(ul);
};
});
</text>
}