• dakwegmo

    (@dakwegmo)


    I have created content in three different widgets (Hero Slider, Hero Static, and Top Full) but they don’t show on any of the pages on my site. I can drag the same content to one of the other widget areas and it displays just fine. Is there something I need to do to get these to work?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter dakwegmo

    (@dakwegmo)

    I figured out part of it. The index page only calls the hero widgets if the home page is showing the latest blog posts. If you’ve configured a static home page, with your latest posts under a different page name, the hero widgets never get called.

    I tried editing the index.php from this:

     <?php if ( is_front_page() && is_home() ) : ?>
    	<?php get_template_part( 'global-templates/hero' ); ?>
    <?php endif; ?>

    to this

     <?php if ( is_front_page() ) : ?>
    	<?php get_template_part( 'global-templates/hero' ); ?>
    <?php endif; ?>

    but that still doesn’t call the widgets on the configured front page. I’ve been digging through the code and don’t see anywhere in any of the other template pages that would need to be changed.

    Hi, have you tried editing page template files located in UnderStrap > page-templates > {filename}.php? It worked for me.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Widgets aren’t showing’ is closed to new replies.