• For some reason the individual sermon titles are not appearing on the series archive pages for the sermons. Everything else (series title, description, preacher, etc.) shows up just fine. I do have content-sermon-archives.php in the partials folder of my child theme and I see this in the code:

    <?php 
       if(SermonManager::$title == 'no'){}else{?>
      <h3 class="wpfc-sermon-title">
        <a class="wpfc-sermon-title-text" href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
      </h3>
    <?php }
    ?>
    <?php endif; ?>

    So, as far as I can tell, if the sermon has a title it should display, right? Any insights for a poor amateur?

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Looking at our test site using the FREE version of Astra, the title is shown on the Series archive page. This is right out of the box…no child theme, no custom CSS etc.

    Sounds like you either have some custom CSS or the Pro version of Astra is a bit different then the free version.

    Thread Starter dickinsondynamics

    (@dickinsondynamics)

    Forgive the delayed response. Personal drama, yada yada.

    I do have custom CSS in place to make the layout work since the default wouldn’t format correctly. Any ideas if these are causing the issue?

    /* Single Sermon page layout */
    .wpfc_sermon-template-default .site-content > .ast-container {
        max-width: 1240px !important;
    	display: flex;
    	justify-content: center;
    	margin-bottom: 20px;
    	border: 0px solid;
    }
    
    /* Single Sermon Feature Image Alignment */
    .wpfc-sermon-single-image-img {
    	display: block;
    	margin-left: auto;
    	margin-right: auto;
    	max-height: 300px;
    }
    
    /*Sermon Archive Entry Layout */
    .wpfc-sermon-container {
    	max-width: 1240px;
    	margin: 0 auto;
    }
    
    .wpfc-sermon-inner {
        display: flex;
        flex-flow: row wrap;
        padding: 20px 0;
        border-bottom: 1px solid var(--ast-border-color);
    }

    I understand about life/personal stuff.

    I don’t think it’s a custom CSS issue. If it where a custom CSS issue, you could see it being hidden in the source code. I don’t see your title at all. You either have a custom template in place that isn’t displaying or your theme isn’t display it. I suggest switching to either the WordPress “Twenty Twenty-two” or the free version of Astra. If that takes care of it, you know it’s the theme.

    • This reply was modified 2 years, 1 month ago by Mike Matenkosky. Reason: more info
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Title not showing in series archive’ is closed to new replies.