• Resolved sraisor

    (@sraisor)


    Currently on WordPress 4.7.2 and on Sermon Manager 2.0.2. After latest upgrade, embedded audio player is not showing in sermon manager posts.

    Any ideas?

Viewing 11 replies - 1 through 11 (of 11 total)
  • maxstro

    (@maxstro)

    no idea.. same Problem….

    ivictorpraiz

    (@ivictorpraiz)

    same problem here..
    someone should please help

    ivictorpraiz

    (@ivictorpraiz)

    ok, I found a fix for the problem..
    activate the wp-rollback plugin and revert your sermon manager upgrade to version 1.9.6.
    that should do the Job

    Thread Starter sraisor

    (@sraisor)

    That fixed it! Thanks ivictorpraiz!

    Now lets hope the developer really fixes it for the future!

    knireis

    (@knireis)

    I hoped for a solution for this issue in version 2.0.4 but unfortunately no player is visible on either the single or archive pages.

    I’m using avada theme and wp 4.7.2

    Regards

    Plugin Author wpforchurch

    (@wpforchurch)

    Hi @knireis @sraisor @ivictorpraiz @maxstro @sraisor,

    Thanks for reporting this. The Sermon Manager (and wpforchurch.com) is now under new ownership and we’re looking to sort out any remaining bugs as our first priority.

    In all our tests of 2.0.4 the audio player is there, so at this point i assume its something to do with the theme. @knireis would you be in a position to send me Avada so i can test on my end? If so, please send it to [email protected] and we’ll do some testing.

    knireis

    (@knireis)

    thanks, avada is on its way

    Plugin Author wpforchurch

    (@wpforchurch)

    Perfect, thanks @knireis. We got it and we’ll get testing asap and report back!

    Thanks,
    Igor

    Plugin Author wpforchurch

    (@wpforchurch)

    @knireis and others:

    Just keeping you in the loop. We can see the following issues in Avada:

    – No filter bar shown
    – No audio player

    The issue is because of v2.x which uses slightly different functions to the old version and Avada still uses the old functions.

    We accept that when the v2 release happened no sufficient release notes were supplied for theme developers to make the relevant changes, and that’s something we (new owners) want to make sure happens in the future with every major release.

    We’re working on the Avada template files fixes now and i will include it here for you to download as soon as its done and tested.

    Plugin Author wpforchurch

    (@wpforchurch)

    Hi everyone,

    Ok we think we have a fix for Avada, they are using some incorrect and some outdated code. The following has been tested by us and works:

    For the themes/Avada/archive-wpfc_sermon.php file:

    <?php get_header(); ?>
    	<div id="content" <?php Avada()->layout->add_class( 'content_class' ); ?> <?php Avada()->layout->add_style( 'content_style' ); ?>>
    		<?php if ( class_exists( 'Sermon_Manager_Template_Tags' ) ) {
    		  $sorting = new Sermon_Manager_Template_Tags();
    		  $sorting->render_wpfc_sorting();
    		} else {
    		  if ( function_exists( 'render_wpfc_sorting' ) ) {
    		    echo render_wpfc_sorting();
    		  }
    		} ?>
    		<?php get_template_part( 'templates/blog', 'layout' ); ?>
    	</div>
    	<?php do_action( 'avada_after_content' ); ?>
    <?php get_footer();

    Then in the theme’s functions.php file around line 647:

    <?php if ( ! $archive ) : ?>
    		<?php echo wpfc_sermon_media(); ?>
    		<?php wpfc_sermon_files(); ?>
    		<?php wpfc_sermon_description(); ?>
    		<?php echo wpfc_sermon_attachments(); ?>
    		<?php echo the_terms( $post->ID, 'wpfc_sermon_topics', '<p class="sermon_topics">' . esc_attr__( 'Topics: ', 'sermon-manager' ), ',', '', '</p>' ); ?>
    <?php endif; ?>

    Here is our test site – https://wpforchurch.com/testing/205/sermons/test-sermon/

    Let me know how that goes!

    Regards,
    Igor

    Plugin Author wpforchurch

    (@wpforchurch)

    Hi @franswaa,

    Looks like the same issue as with Avada code:

    Change the following code:

    <div class=”wpfc_sermon_files cf”>
    
    <?php wpfc_sermon_media(); ?>
    <?php wpfc_sermon_files(); ?>
    <?php wpfc_sermon_description(); ?>
    <?php wpfc_sermon_attachments(); ?>
    
    </div>

    To this:

    <div class=”wpfc_sermon_files cf”>
    
    <?php echo wpfc_sermon_media(); ?>
    <?php wpfc_sermon_files(); ?>
    <?php wpfc_sermon_description(); ?>
    <?php echo wpfc_sermon_attachments(); ?>
    
    </div>

    Let me know how you go,

    Igor

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Audio Player Missing on Sermon Posts’ is closed to new replies.