Move Ethos Carousel below Rev Slider

Hi there,

I have been using X theme on a site, and have hesitated to change over to Pro because the Ethos carousel, which is currently below the Revolution Slider on my X theme site, moves up to it’s natural place above the navigation. I’ve seen various threads here that address this in different ways, but not specifically the way that I need to address it (not that I’ve seen anyway) and would like your help in recreating this so I can move from X to Pro. I’ll supply more detail in a separate private message.

Any help you could give would be very much appreciated!

Thanks!

Hi Julianne,

Thanks for reaching out.

The carousel feature is only applicable for the standard header, and if you’ll upgrade to Pro and no plans to use the header builder then it should work the same way as X theme. Else, the carousel will not be displayed due to the custom header.

Would you mind providing the threads you’re referring and details about the outcome you wish to achieve?

Thanks!

Hi Rad,

I’m using a standard header, not a custom header. I was given code by your team a few years ago when the site was developed to move the carousel below the slider. I tried to use that same code in the test site and it didn’t work. Is there any way you can help me reconstruct this?

I did a search for moving Ethos carousel and came up with results on how to move it to different pages, and below the navigation, but not sure if that was specific to Pro or not.

The outcome I’m trying to achieve is to keep the home page exactly the same once we migrate to Pro. As of now, the Ethos carousel is above the site navigation when I use Pro as the theme. I need to place it back below the slider.

Thanks!

Hi Julianne,

Not sure what code was provided to you before but you can try this.

Create file wp-header.php in wp-content/themes/pro-child/framework/legacy/cranium/headers/views/ethos
Then add the code below into that file.

<?php

// =============================================================================
// VIEWS/ETHOS/WP-HEADER.PHP
// -----------------------------------------------------------------------------
// Header output for Ethos.
// =============================================================================

?>

<?php x_get_view( 'global', '_header' ); ?>

  <?php x_get_view( 'global', '_slider-above' ); ?>

  <header class="<?php x_masthead_class(); ?>" role="banner">
    
    <?php x_get_view( 'global', '_topbar' ); ?>
    <?php x_get_view( 'global', '_navbar' ); ?>
    <?php x_get_view( 'ethos', '_breadcrumbs' ); ?>
  </header>

  <?php x_get_view( 'global', '_slider-below' ); ?>  
  <?php x_get_view( 'ethos', '_post', 'carousel' ); ?>
  <?php x_get_view( 'ethos', '_landmark-header' ); ?>

Hope that helps

1 Like

Thanks Paul, I’ll give it a try and see how it goes!

Feel free to let us know how it goes.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.