Hi again,
for a temporary work-around you can remove the transition effects by editing the "Plugins\SevenSpikes.Nop.Plugins.AnywhereSliders\Views\AnywhereSliders\CarouselSlider.cshtml" file in a text editor and add the last two lines to the initialization javascript method:
<script type="text/javascript">
$(document).ready(function() {
$('#[email protected]@Model.WidgetId').coinslider({
width: @Model.Settings.Width.ToString(CultureInfo.InvariantCulture),
height: @Model.Settings.Height.ToString(CultureInfo.InvariantCulture),
navigation: @Model.Settings.Navigation.ToString().ToLower(),
delay: @Model.Settings.AutoSlideInterval.ToString(CultureInfo.InvariantCulture),
effect: 'straight',
links: @Model.Settings.Links.ToString().ToLower(),
hoverPause: @Model.Settings.HoverPause.ToString().ToLower(),
spw: 1,
sph: 1
});
});
</script>
This should increase the performance by reducing the CPU usage by 30-40%.
Hope that helps!
Hi,
We would not recommend editing the javascript of the filters itself although you could do that in the success handler of the GetFilters ajax request. The code is in the Filters.js file and looks like this:
$.ajax({ cache: false, type: "POST", data: $.toJSON(getFilteredProductsParameters),
contentType: "application/json; charset=utf-8", url: productsRequestUrl, success: function (data) { ...}
You can add here some code to adjust the scroll position of the browser. You can unminify the file using the various tools that are available on the web, or just using the Development Tools of the Google Chrome browser.
The other option, which we think is the better one is to write some javascript in your category template, which will use the ajaxSuccess method. Please look at the documentation here:
http://api.jquery.com/ajaxSuccess/
Basically this an event handler, which is called when an ajax request succeeds. You need to inspect the XMLHttpRequest property of the event handler, to make sure that it is the request of the filters that succeeded and not some other request in the web site, and in the event handler write the code to adjust the browser position.
I hope this is useful.
Hi,
in order to set an image as a background you should edit the Themes\Fashion\Content\CSS\Fashion.css file and most precisely the body class and add the background-image property:
body
{
background-color: #FFFFFF;
background-image: url_to_your_image;
color: #000000;
font-family: Arial,Verdana,sans-serif;
font-size: 75%;
margin: 0 0 10px;
}
Hope that helps!
Hi mysecond,
Thank you for reporting this! Your feedback is really important to us.
There was a bug with the Nop Ajax Filters when your web site has sub directories, but it was fixed a day ago, which is after your time of purchase.
Could you please download the latest Nop Fashion Theme from the My Account section, replace(delete first) the "Plugins\SevenSpikes.Core" and "Plugins\SevenSpikes.Nop.AjaxFilters" folders on your site with the ones from the latest package and hit Ctrl + F5 on your site to clear the browser cache and the error should go away.
If you are still experiencing the same problem would you be able to give us some more information: an url to the site to see what the problem is, a short description on how to reproduce it.
Hope that helps!
Thanks!
Hi Yves,
thank you for reporting this issue. The problem has been fixed and uploaded on our site. You can download it from going to My Account section and download the theme again.
Best Regards!
Hi,
This seems to be a limitation of the current implementation. We will enhance the filters to support sorting of the drop downs by the DisplayOrder of the specification attributes and will let you know when you can download the new version.
Hope this works for you!
Hi guys,
The problem described above is fixed now.
You can download the latest version of the plugin from the Downloadable products section in your account.
You only need to replace SevenSpikes.Nop.Plugins.NopQuickTabs.dll file in the SevenSpikes.Nop.Plugins.NopQuickTabs plugin directory and click Restart Application button in the top right corner of the Admin Panel.
Best Regards,
Nop-Templates Support Team