Hi,
Have you made any modifications to the theme because we don't have such errors on our demo store? Why is the "Referrer URL:" empty? Please post it, so that we can see on which page this error is shown.
Thanks
Hi guys,
We are happy to announce the release of the Theme Roller for the Electronics theme for nopCommerce 3.0.
With the release of the Theme Roller we also improved the whole theme as well as the theme forum (as requested).
Enjoy the Theme Roller and showcase us what you have done with it!
Thanks
<div class="row-wrapper">
@foreach (SevenSpikes.Nop.Plugins.MegaMenu.Models.MegaMenuCategoryModel item in Model.CategoriesModels)
{
<div class="box">
<div class="title">
<strong>
<a href="@Url.RouteUrl("Category", new { SeName = item.CategoryModel.SeName })" title="@item.CategoryModel.PictureModel.Title">
@item.CategoryModel.Name</a>
</strong>
</div>
<!--title-->
<div class="picture">
<a href="@Url.RouteUrl("Category", new { SeName = item.CategoryModel.SeName })" title="@item.CategoryModel.PictureModel.Title">
<img alt="@item.CategoryModel.PictureModel.AlternateText" src="@item.CategoryModel.PictureModel.ImageUrl"
title="@item.CategoryModel.PictureModel.Title" /></a>
</div>
<!--picture-->
<ul class="subcategories">
@foreach (var subCategory in item.SubCategories.Take(megaMenuSettings.NumberOfCategories))
{
<li>
<a href="@Url.RouteUrl("Category", new { SeName = subCategory.CategoryModel.SeName })" title="@subCategory.CategoryModel.Name">
@subCategory.CategoryModel.Name</a>
</li>
}
@if (item.SubCategories.Count == megaMenuSettings.NumberOfCategories)
{
<li>
<a class="view-all" href="@Url.RouteUrl("Category", new { SeName = item.CategoryModel.SeName })">@T("SevenSpikes.MegaMenu.ViewAllCategories")</a>
</li>
}
</ul>
</div>
}
</div>