linkxperts wrote:Hi,
We use the Fashion theme for nop 3.10.
How can we place the jcarrousel inbetween the Anywhere Slider and the HomePageText topic?
Regards,
Marcel
Hi linkxperts,
The easiest way is to change the Themes\Fashion\Views\Home\Index.cshtml view as it follows:
swap the line:
@Html.Action("TopicBlock", "Topic", new { systemName = "HomePageText" })with this one:
@Html.Widget("fashion_home_page_after_main_slider")Here is how it should looks like after the change:
@Html.Widget("home_page_main_slider")
@Html.Widget("fashion_home_page_after_main_slider")
@Html.Action("TopicBlock", "Topic", new { systemName = "HomePageText" })
Then place your JCarousel in the
fashion_home_page_after_main_slider widget zone.
Hope this helps!
Best regards,
Hristian Dimov
Nop Templates Team