• Resolved danbru

    (@danbru)


    Earlier today we were successful at getting the sermons to display properly, but I noticed that the Sermon Sorting that is supposed to be available by default on the archive pages is not visible.

    I had used this in the past, but it makes no difference now:

    // Add Sermon Sorting Options to Sermon Archive Pages
    	add_action('genesis_before_loop', 'bds_add_sermon_sorting', 15);
    	function bds_add_sermon_sorting() {
    		if ( 'wpfc_sermon' == get_post_type() && is_archive() ) {
    			render_wpfc_sorting();
    		}
    	}

    I am using the “latest development version” as offered here.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hey @danbru,

    True, filters are available if you check “Enable Template Files” in Sermon Manager settings

    Your code will work too, just put echo before render_wpfc_sorting().

    The functionality for that function has been changed before version 2.0 (we weren’t even the owners of the plugin back then).
    Yeah, that was a bad move, in terms of backwards compatibility, but it wasn’t our call

    Thread Starter danbru

    (@danbru)

    ah! Thanks for the explanation and fix. I didn’t really have time to dig into the problem yet.

    Sorry for overlooking that. Great support!

    • This reply was modified 7 years, 7 months ago by danbru. Reason: spelling

    No problem, and thank you.

    If you are happy with the plugin and support, you could always leave us an review.
    It will be much appreciated ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Sermon Sorting Not Displaying’ is closed to new replies.