• This plugin does not work with sites like Twenty Twenty-four. This has been an ongoing issue for several years and to tell you the truth I really think it will well never get fixed.

    As an example, using Twenty Twenty-four, if you have set the SM settings to ‘Theme Compatibility’ the sermon archive page works but the single page will not display and media (video or audio). If you uncheck ‘Theme Compatibility’ both sermon archive and the single sermon page display all of the content, but the format doesn’t match the rest of the site.

    Can you PLEASE fix this.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author wpforchurch

    (@wpforchurch)

    Dear @hikinmike ,

    Thank you for bringing this compatibility issue to our attention. We understand the frustration it’s causing, especially considering the prolonged nature of the problem. Rest assured, our team is committed to resolving this issue promptly.

    We will prioritize investigating and addressing the compatibility issues between our plugin and themes like Twenty Twenty-four. Our developers will delve into the root causes of the problem and work diligently to implement effective solutions.

    While we cannot provide an immediate fix, please know that your feedback is invaluable to us. We appreciate your patience and understanding as we strive to deliver a seamless experience for all our users.

    In the meantime, if you have any further insights or feedback that could assist us in resolving this issue, please don’t hesitate to share them. We’re here to listen and collaborate with you to ensure the best possible outcome.

    Thank you for your continued support and for choosing our plugin. We are committed to delivering a solution that meets your expectations.

    Thread Starter Mike Matenkosky

    (@hikinmike)

    I wish I had any feedback as to how to fix it as I know just enough HTML/CSS/PHP to be dangerous. With that said, I installed a shortcode plugin (XYZ PHP Code) and I went ahead and added the code to populate the Bible Verse, Audio and Video. Then you can just use that shortcode to the template(s). I’m going to include the code hear so maybe another user can benefit while you take care of this.

    Bible Verse

    <?php global $post; ?>	
    
    <?php if ( get_post_meta( $post->ID, 'bible_passage', true ) ) : ?>
    	<div class="wpfc-sermon-meta-item wpfc-sermon-meta-passage">
    		<span class="wpfc-sermon-meta-text"><?php wpfc_sermon_meta( 'bible_passage' ); ?></span>
    	</div>
    <?php endif; ?>

    Video

    <?php if ( get_wpfc_sermon_meta( 'sermon_video' ) ) : ?>
    	<div class="wpfc-sermon-single-video wpfc-sermon-single-video-embed">
    		<?php echo do_shortcode( get_wpfc_sermon_meta( 'sermon_video' ) ); ?>
    	</div>
    <?php endif; ?>

    Audio

    <?php if ( get_wpfc_sermon_meta( 'sermon_video' ) ) : ?>
    	<div class="wpfc-sermon-single-video wpfc-sermon-single-video-embed">
    		<?php echo do_shortcode( get_wpfc_sermon_meta( 'sermon_video' ) ); ?>
    	</div>
    <?php endif; ?>
    Plugin Author wpforchurch

    (@wpforchurch)

    Hi @hikinmike

    Twenty Twenty-four theme support added for design.

    Thread Starter Mike Matenkosky

    (@hikinmike)

    @wpforchurch What exactly does that mean? I see nothing has changed.

    FWIW, We did change to Twenty Twenty Four, but that’s because I did A LOT of custom stuff that most folks can’t do.

    I went ahead and marked this back to unresolved because it isn’t in my book.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘This Plugin Doesn’t Work with FSE Sites’ is closed to new replies.