No carsole on first page

i dont want any carsole or banner on first page , directly menu

how can i ?

thanks
jigen

It requires editing the main header template for your site, so not ideal unless you are fluent in html and understand scripting languages.

The carousel will be inserted by a snippet of code something like this (carousel name may vary):

{if (pageproperty['pageid'] eq 'home')}
   <section id="key-info">
      {includeCarousel("homepageslider")}
   </section>
{else}

The safest way to hide the carousel is to comment out that line so it is ignored when building the page:

 {* {includeCarousel("homepageslider")} *}

If you are even SLIGHTLY unsure about how to do the above then raise a ticket, because a mistake in the template editor can easily mangle your whole website.

1 Like