I had the same problem so I checked the debug.log and I got:
PHP Fatal error: Unparenthesizeda ? b : c ? d : eis not supported. Use either(a ? b : c) ? d : eora ? b : (c ? d : e)in wordpress/wp-content/plugins/sermon-manager-for-wordpress/views/wpfc-podcast-feed.php on line 165
So I added parentheses in line 165 so it looks like this:
'terms' => is_numeric( $terms ) ? intval( $terms ) : (false !== strpos( $terms, ',' ) ? array_map( 'sanitize_title', explode( ',', $terms ) ) : sanitize_title( $terms )),
This fixed the error for me.
Hope this helps.
My feed has stopped working,
I noticed this week that the last message uploaded did not make it to feedburner
When I check the feed I get this message:
This page contains the following errors:
error on line 2 at column 1: Document is empty
Below is a rendering of the page up to the first error.
Any idea what I can do?
@tschejkob Thank you for this code! It worked perfectly for me. My only hope is Sermon Manager includes this in the next update. Thanks again!
@ccb200 I’m at a loss on what might contribute to this error. Have you implemented the solution @tschejkob provided?
Where and how do I add this?
@tschejkob, that worked perfectly! Thanks for discovering that! Hopefully they’ll include in the next release.