antgiant
Forum Replies Created
-
Forum: Plugins
In reply to: [Sermon Manager] Various Bug Fixes@nikolam Awesome! Thank you.
Forum: Plugins
In reply to: [Sermon Manager] Various Bug FixesAs of 2.0.8 Three of the four issues listed above are resolved. Thank you!
The final issue is that if you add an audio file to a sermon it sometimes gets attached as an enclosure. Due to how the podcast feed is generated that causes those audio files to be added as an enclosure twice. There are two options to handle this. Delete the system generated enclosure or put your logic for enclosures into the system location. I elected for option A. That requires this change
Fix issue where podcast enclosures are sometimes duplicated
Open “/includes/podcast-functions.php” in Plugin Editor and go to line 133.
Add thisfunction wpfc_podcast_delete_enclosure() { return ''; }
The go to line 139 or 140 and add this line after what’s there
add_filter( 'rss_enclosure', 'wpfc_podcast_delete_enclosure' );
Forum: Plugins
In reply to: [Sermon Manager] 2.0 Has Breaking ChangesThank you
Forum: Plugins
In reply to: [Sermon Manager] 2.0 Has Breaking Changes@funkydan2 & @andyjimmy Glad to hear it is working for you.
Forum: Plugins
In reply to: [Sermon Manager] 2.0 Has Breaking Changes@andyjimmy Sounds to me like a theme or customization issue to me. Doing any customizations? I would suggest trying a different theme in a testing environment and seeing if that fixes anything.
Forum: Plugins
In reply to: [Sermon Manager] 2.0 Has Breaking ChangesThe root of the breaking change for sermon excerpts is the migration to a class. As a result of that move a custom excerpt cannot access the $this object. Thus it is unable to access several of the required fields. I suspect that the solution will look something like this but haven’t figured out the details yet.
Forum: Plugins
In reply to: [Sermon Manager] 2.0 Has Breaking ChangesAlso, the podcast feed will not validate on an https site. As the spec requires that the audio files be http. If the podcast feed generator could auto convert the audio links from https into http that would be great for my site validating.
Forum: Plugins
In reply to: [Sermon Manager] Sermon meta data is being duplicatedFound a solution to the podcast feed issue if you are willing to edit the plugin until an actual update gets pushed out
Forum: Plugins
In reply to: [Sermon Manager] wpfc_preacher not displaying on pageFound a solution to the podcast feed issue if you are willing to edit the plugin until an actual update gets pushed out
Forum: Plugins
In reply to: [Sermon Manager] 2.0 Has Breaking ChangesFound the source of the duplicate podcast feed items
Line 430 of sermon-manager-for-wordpress/includes/template-tags.php
Currentlyif (is_archive() || is_search() ) {
Change toif (!is_feed() && ( is_archive() || is_search() ) ) {
In short Line 25 of sermon-manager-for-wordpress/includes/template-tags.php is causing the excerpt to be repeatedly added to podcast description field. Possibly other post types as well.