Jonathan Bossenger
Forum Replies Created
-
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Debug notices@lortnoc thanks for bringing this to our attention, we are aware of it, and are currently testing version 2.5.2 of the plugin, which fixes this and a few other post 2.5.0 bugs.
We’re hoping to get this update out early next week.
Regards
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Secure Connection FailHi @grimesweb
Seriously Simple Podcasting is owned and managed by Castos Hosting, in fact it was me that helped you in support today regarding the secure connection error. π
Regards
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Unnecessarily loading recent-episodes.cssHi @rghedin thanks for bringing this to our attention.
The handle by which the CSS is loaded is ‘ssp-recent-episodes’, WordPress adds the ‘-css’ when the style is rendered on the front end, so you would just need to change your function to:
wp_dequeue_style( 'ssp-recent-episodes' );However, it would be ideal if this only rendered the recent episodes CSS when the relevant episode list is rendered, so I have logged this as a bug and we’ll look into updating the plugin to fix this.
https://github.com/CastosHQ/Seriously-Simple-Podcasting/issues/561
Thanks
Forum: Plugins
In reply to: [Seriously Simple Podcasting] 2.5.0 Causing Massive IssuesHi @julianbeip and @swagit
We’ve pushed out a point release (2.5.1) this morning which resolves this issue.
Thank you for your patience while we fixed it.
Regards
Forum: Reviews
In reply to: [Seriously Simple Podcasting] Doesn’t update the date of the posts anymore!Hi @seanspade thanks for the feedback.
Could we ask you to log this as an issue on our GitHub code repository, then we can look into fixing this in a future release https://github.com/CastosHQ/Seriously-Simple-Podcasting
Forum: Reviews
In reply to: [Seriously Simple Podcasting] cool podcast plugin@ahmetsali thanks for the feedback.
Could I ask you to list the two cons as issues on our GitHub repository, that way we can look at improving them in future updates.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] wavesurfer.js is loaded from Cloudflare@kelmas no problem, thank you for your patience with this release, we had some other bugs we wanted to include as part of 2.5.0.
If you get a moment, we’d appreciate it if you could rate and review the plugin.
Thanks
Hello @insiderzfr
Because you are wanting to return the series image on a single podcast page, you cannot use get_query_var( βtermβ ). This would only work on a series archive page, where the series term is passed into the request.
On a single podcast page, you need to get the current podcast(post) id, and then get the series attached to that podcast, to get the series image
$all_series_array = get_the_terms( get_the_ID(), 'series' );This will return an array of all the series terms attached to the current podcast, and you can use that to select a single series, and then use the series image attachment code from the original support ticket you referenced.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Media provider object was not suitable errorHello @grimesweb
It looks like you are using Castos Hosting, and there is a problem with the audio file path stored in your WordPress site. In order to support you for Castos specific issues, could I ask you to email our dedicated support channel at hello@castos.com, where we can better help you troubleshoot this issue.
Regards
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Author page doesn’t show podcast episodesHi @miragepv
In order to include podacst episodes on your Authors page, you’re going to have to either customise the theme template that shows the authors page, ideally through a child theme, or filter the arguments that generate the posts for the author page, to include podcast post types.
Are you comfortable making these types of changes in either a child theme or custom plugin?
Forum: Plugins
In reply to: [Seriously Simple Podcasting] wavesurfer.js is loaded from CloudflareHi @kelmas, thanks for checking in
It’s taken a bit longer than expected, but we’re in the final stages of testing the 2.5.0 release
https://github.com/CastosHQ/Seriously-Simple-Podcasting/tree/release/2.5.0.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Player broken with Jetpack Infinite loadingHi @fledo
Thanks for reporting this. At the moment the current iteration of the HTML5 Player is not compatible with infinite scroll functionality.
We are however in the process of replacing the HTML5 player with a new, more streamlined and less resource heavy version, and once that is released, we can focus on compatibility with things like infinite scroll.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Advanced custom fields in RSS feedHello @shandb
Yes, you can modify the template file that generates the RSS feed. This file is located in the templates directory, feed-podcast.php
However, I would suggest that instead of modifying the core plugin file, you can rather create your own template file, as a copy of the plugin’s template file, and edit that.
- First, copy the /templates/feed-podcast.php from the plugin to a different location ideally in a child theme
- Then, use the ssp_feed_template_file filter, to tell WordPress to load your version of feed-podcast.php instead of the plugin version
Once you have done this, you can edit your version of the feed-podcast.php file, to effect the changes you need, and your file won’t be overwritten when the plugin updates.
- This reply was modified 5 years, 5 months ago by Jonathan Bossenger.
Hello @eangulus
Looking at the functionality of the Organize Series plugin, it seems that this plugin creates the same custom taxonomy as our plugin, namely
series.The default functionality of Seriously Simple Podcasting is to use the series taxonomy to allow a user to create multiple RSS feeds for each series. You can read more about this here – https://support.castos.com/article/24-working-with-podcast-series
So by using two plugins that create and use the same custom taxonomy, it will mean that the custom functionality of each plugin will take affect on any custom terms you create.
There is however a way around this. Seriously Simple Podcasting allows you to customize the slug for the custom
seriestaxonomy it creates, to something other thanseriesso that you have more control.You can use the
ssp_series_slugandssp_series_taxonomyfilters to change the custom taxonomy from the default of series, to anything else you prefer (maybe podcast_series) to give you the control you require.In a child theme or custom plugin, you can use the following code to do this
https://gist.github.com/jonathanbossenger/80ef92bd90bbfa12dd04519a213efed4
Forum: Plugins
In reply to: [Seriously Simple Podcasting] CSS override after update?Hi @bhkh thanks for reporting this.
It does seem to be after the update, and I have logged it to our GitHub issue tracker, to be fixed.
https://github.com/CastosHQ/Seriously-Simple-Podcasting/issues/539
We’ll get this update out this week.
Regards