- 20
I am using nopcommerce 3.7 and upgraded themes. When I installed the alfresco theme, and refresh my homepage, it shows the following error message.
then I change the shared/_root.cshtml file to render the section
and it works properly. Do you have any suggestion regarding this so I don't have to change your view files.
then I change the shared/_root.cshtml file to render the section
if (isHomePage)
{
@RenderSection("HomePage");
additionalClass = "master-home-page";
mainSlider = @Html.Widget("home_page_main_slider");
}
and it works properly. Do you have any suggestion regarding this so I don't have to change your view files.