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

    (@wpforchurch)

    Hi @mcfarnell,

    Yeah that could happen depending on your theme set up, it sounds like you theme is still using the old functions, they have slightly changed.

    If you can find the location this function is called in your theme files render_wpfc_sorting(); please just change it to

    <?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();
    		  }
    		} ?>

    That should then show up the filters for you again.

    Hope that helps

    Thread Starter McFarnell

    (@mcfarnell)

    Thank you! This fixed it perfectly. I used “What the File” plugin to find the template, updated it, and saved the updated copy in my child theme. Worked great.

    Plugin Author wpforchurch

    (@wpforchurch)

    Hey @mcfarnell,

    Awesome, no worries. Glad it’s working for you again,

    Igor

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Sermon Filters gone?’ is closed to new replies.