Slider Revolution in Pro

Hi I am trying to use the Pro content builder (as well as the Header and Footer builders). I can see that I can add a Slider Revolution slider with ‘Classic’. Is that the only way to do it? It would be good if there is a ‘pro’ way to do it but I can’t figure out if that is possible yet.

Hi @russell3,

Thanks for writing in.

You can check the link below on how to utilize revslider.

You can also use shortcodes on how to add revslider in your PHP code or raw html elements.

for example,

<?php

// =============================================================================
// VIEWS/INTEGRITY/WP-HEADER.PHP
// -----------------------------------------------------------------------------
// Header output for Integrity.
// =============================================================================

?>

<?php x_get_view( 'global', '_header' ); ?>
<?php if ( is_page( ) ) :?>
  <?php echo do_shortcode('[rev_slider agency-home]'); // change slider alias here ?>
 <?php else : ?>

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

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

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

Hope it helps.

Thanks.

Yes, very helpful. Many thanks.

You are welcome!