Title: Audio Player Missing on Sermon Posts
Last modified: March 9, 2017

---

# Audio Player Missing on Sermon Posts

 *  Resolved [sraisor](https://wordpress.org/support/users/sraisor/)
 * (@sraisor)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/audio-player-missing-on-sermon-posts/)
 * 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](https://wordpress.org/support/users/maxstro/)
 * (@maxstro)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/audio-player-missing-on-sermon-posts/#post-8796677)
 * no idea.. same Problem….
 *  [ivictorpraiz](https://wordpress.org/support/users/ivictorpraiz/)
 * (@ivictorpraiz)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/audio-player-missing-on-sermon-posts/#post-8798738)
 * same problem here..
    someone should please help
 *  [ivictorpraiz](https://wordpress.org/support/users/ivictorpraiz/)
 * (@ivictorpraiz)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/audio-player-missing-on-sermon-posts/#post-8798780)
 * 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](https://wordpress.org/support/users/sraisor/)
 * (@sraisor)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/audio-player-missing-on-sermon-posts/#post-8801605)
 * That fixed it! Thanks ivictorpraiz!
 * Now lets hope the developer really fixes it for the future!
 *  [knireis](https://wordpress.org/support/users/knireis/)
 * (@knireis)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/audio-player-missing-on-sermon-posts/#post-8878661)
 * 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](https://wordpress.org/support/users/wpforchurch/)
 * (@wpforchurch)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/audio-player-missing-on-sermon-posts/#post-8878871)
 * Hi [@knireis](https://wordpress.org/support/users/knireis/) [@sraisor](https://wordpress.org/support/users/sraisor/)
   [@ivictorpraiz](https://wordpress.org/support/users/ivictorpraiz/) [@maxstro](https://wordpress.org/support/users/maxstro/)
   [@sraisor](https://wordpress.org/support/users/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](https://wordpress.org/support/users/knireis/)
   would you be in a position to send me Avada so i can test on my end? If so, please
   send it to [igor@wpforchurch.com](https://wordpress.org/support/topic/audio-player-missing-on-sermon-posts/igor@wpforchurch.com?output_format=md)
   and we’ll do some testing.
 *  [knireis](https://wordpress.org/support/users/knireis/)
 * (@knireis)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/audio-player-missing-on-sermon-posts/#post-8878885)
 * thanks, avada is on its way
 *  Plugin Author [wpforchurch](https://wordpress.org/support/users/wpforchurch/)
 * (@wpforchurch)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/audio-player-missing-on-sermon-posts/#post-8878918)
 * Perfect, thanks [@knireis](https://wordpress.org/support/users/knireis/). We 
   got it and we’ll get testing asap and report back!
 * Thanks,
    Igor
 *  Plugin Author [wpforchurch](https://wordpress.org/support/users/wpforchurch/)
 * (@wpforchurch)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/audio-player-missing-on-sermon-posts/#post-8883301)
 * [@knireis](https://wordpress.org/support/users/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](https://wordpress.org/support/users/wpforchurch/)
 * (@wpforchurch)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/audio-player-missing-on-sermon-posts/#post-8888378)
 * 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/](https://wpforchurch.com/testing/205/sermons/test-sermon/)
 * Let me know how that goes!
 * Regards,
    Igor
 *  Plugin Author [wpforchurch](https://wordpress.org/support/users/wpforchurch/)
 * (@wpforchurch)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/audio-player-missing-on-sermon-posts/#post-8891428)
 * Hi [@franswaa](https://wordpress.org/support/users/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.

 * ![](https://s.w.org/plugins/geopattern-icon/sermon-manager-for-wordpress_688896.
   svg)
 * [Sermon Manager](https://wordpress.org/plugins/sermon-manager-for-wordpress/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/sermon-manager-for-wordpress/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/sermon-manager-for-wordpress/)
 * [Active Topics](https://wordpress.org/support/plugin/sermon-manager-for-wordpress/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/sermon-manager-for-wordpress/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/sermon-manager-for-wordpress/reviews/)

 * 12 replies
 * 6 participants
 * Last reply from: [wpforchurch](https://wordpress.org/support/users/wpforchurch/)
 * Last activity: [9 years, 1 month ago](https://wordpress.org/support/topic/audio-player-missing-on-sermon-posts/#post-8891428)
 * Status: resolved