Forum Replies Created

Viewing 1 replies (of 1 total)
  • I have same issue as @prunksoldat. I use SoliloquyWP slider. The code results in nothing displayed on home page. The code is there when I view source.
    We tested the soliloquy slider on a separate page. Wondering what might be causing this. The code seems to make sense.

    @-avocado-,
    Any suggestions? I saw your post on this topic also in https://ww.wp.xz.cn/support/topic/slider-homepage-2/. No new information. Is it working for you?

    The soliloquy shortcut is [soliloquy id=”455″] so the code we used is:

    <?php
    /**
    * Displays header media
    *
    * @package WordPress
    * @subpackage Twenty_Seventeen
    * @since 1.0
    * @version 1.0
    */
    
    ?>
    <div class=”custom-header”>
    
    <div class=”custom-header-media”>
    <?php if ( twentyseventeen_is_frontpage()) {
    echo do_shortcode(“[soliloquy id='455']”);
    }
    else the_custom_header_markup(); ?>
    </div>
    
    <?php get_template_part( ‘template-parts/header/site’, ‘branding’ ); ?>
    
    </div><!– .custom-header –>
Viewing 1 replies (of 1 total)