Are grouped Products supported or just simple products? If you have a T-Shirt product that is a group of a small, medium and large sizes. Can you just add the top grouped item to the sale?
I tried, but had to end up adding the smoke items instead.
Thanks Hristian for your quick reply. So I do have that .js file, but I did not have that reference to it in Head.cshtml, so I added it at line 51 (see below in bold):
@using Nop.Web.Framework;
@using Nop.Core.Infrastructure;
@using Nop.Web.Framework.UI;
@using Nop.Core;
@{
var supportRtl = EngineContext.Current.Resolve<IWorkContext>().WorkingLanguage.Rtl;
var browser = Request.Browser;
var isIeEightOrLess = false;
if (browser.Browser == "IE" && browser.MajorVersion <= 8)
{
isIeEightOrLess = true;
}
if (isIeEightOrLess)
{
Html.AppendCssFileParts("~/Themes/Traction/Content/css/ie8-fix.css");
}
if (supportRtl)
{
if (browser.Browser == "Safari")
{
Html.AppendCssFileParts("~/Themes/Traction/Content/CSS/safari-fix.rtl.css");
}
Html.AppendCssFileParts("~/Themes/Traction/Content/CSS/980.rtl.css");
Html.AppendCssFileParts("~/Themes/Traction/Content/CSS/768.rtl.css");
Html.AppendCssFileParts("~/Themes/Traction/Content/CSS/480.rtl.css");
Html.AppendCssFileParts("~/Themes/Traction/Content/CSS/mobile-only.rtl.css");
Html.AppendCssFileParts("~/Themes/Traction/Content/CSS/tables.rtl.css");
}
else
{
Html.AppendCssFileParts("~/Themes/Traction/Content/CSS/980.css");
Html.AppendCssFileParts("~/Themes/Traction/Content/CSS/768.css");
Html.AppendCssFileParts("~/Themes/Traction/Content/CSS/480.css");
Html.AppendCssFileParts("~/Themes/Traction/Content/CSS/mobile-only.css");
Html.AppendCssFileParts("~/Themes/Traction/Content/CSS/tables.css");
}
if (supportRtl)
{
Html.AppendCssFileParts("~/Themes/Traction/Content/CSS/styles.rtl.css");
}
else
{
Html.AppendCssFileParts("~/Themes/Traction/Content/CSS/styles.css");
}
Html.AddScriptParts("~/Plugins/SevenSpikes.Core/Scripts/SevenSpikesExtensions.js");
Html.AddScriptParts("~/Plugins/SevenSpikes.Core/Scripts/perfect-scrollbar.min.js");
if (isIeEightOrLess)
{
Html.AddScriptParts("~/Plugins/SevenSpikes.Core/Scripts/selectivizr.min.js");
Html.AddScriptParts("~/Plugins/SevenSpikes.Core/Scripts/respond.min.js");
}
Html.AddScriptParts("~/Plugins/SevenSpikes.Core/Scripts/footable.js");
Html.AddScriptParts("~/Themes/Traction/Content/scripts/traction.js");
}
When attempting to click on the Mega Menu equivalent top link in the mobile view, the sub-menu is not displaying. The console then displays the error .perfectScrollbar is not a function.
You can see for your self at: http://extremeledlightbars.com/. Click the center menu button at the top and click the Products menu item arrow.
I tried adding a reference to perfectScrollbar in the <heade> section, but it did not fix it.
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery.perfect-scrollbar/0.6.7/js/min/perfect-scrollbar.jquery.min.js"></script>