Hi mysecond,
as far as I understand you should do a manual integration with calling your slider by the slider system name. Please make sure you have inserted the call to the slider in the view of the fashion theme.
Also make sure that:
- the system name of the slider is exactly the same as the one you are trying to call(i.e. @Html.Action("Slider", "AnywhereSliders", new { systemName = "{YourSliderSystemName}"}))
- make sure the height and the width of the slider is not equal to 0
- make sure you have images for the slider
If you have done everything above and still cannot display the slider, please provide a link to your store, so that we can assist you in doing this.
Hope that helps!
Hi mickk,
we`ve seen this error. It is a normal error but it is encoded. So we are not sure if it is because of the header menu. To be 100% sure could you remove the plugin, delete it from InstalledPlugins.txt and restart your application. If the error still exist we will be sure it is because of this plugin and then we can have a look at the log to see the actual problems.
Thanks.
Hope that helps!
Hi Yves,
thank you for reporting this. The issue had to do when the cloud zoom is enabled on product details page. The fix is done and uploaded now.
Best Regards!
Hi,
thank you for reporting this. We have already fixed it. Can you try to download the Nop Categories Header Menu again and replace all the files from the old menu with the files from the newly downloaded package.
Or if you prefer the quicker fix is just to edit the "~\Plugins\SevenSpikes.Nop.Plugins.CategoriesHeaderMenu\Styles\jquery.superfishmenu.css" and edit the following css class as shown below:
.sf-menu li:hover ul, .sf-menu li.sfHover ul
{
left: 0;
top: 2em;
z-index: 1001;
width: 156px;
background-color: #ffffff;
}
This is necessary as the Nop Anywhere Sliders are setting z-index of 1000 for the sliders when using the Carousel2D slider.
Hope that helps!
Hi Yves,
in the original design of the Nop Electronics theme, the HomePageText topic is omitted from the home page. In order to add it back you should edit the "~/Themes/Electronics/Views/Home/Index.cshtml" in a text editor and insert the following line of code:
.......
@section AnywhereSliders
{
@Html.Action("Slider", "AnywhereSliders", new { systemName = "HomePageSlider"})
}
@Html.Action("TopicBlock", "Topic", new { systemName = "HomePageText" })
<div class="clear">
</div>
@Html.Action("HomepageProducts", "Catalog")
<div class="clear">
</div>
.......
Hope that helps!
Thank you for your feedback. We might consider for adding this topic back.