Close

Before HomePageText

linkxperts
10 years ago
#4206 Quote
Avatar
  • 8
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
hristian.dimov
10 years ago
#4209 Quote
Avatar
  • Moderator
  • 386
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
Regards,
Hristian Dimov
Nop-Templates.com
linkxperts
10 years ago
#4211 Quote
Avatar
  • 8
That worked. Thanks!