Jonathan Bossenger
Forum Replies Created
-
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Not working properly on SafariIn the meantime, could you let us know which OSX version and Safari version you are running.
Thanks
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Not working properly on SafariHi @themejunkie thanks for bringing this to our attention. I will investigate and get back to you.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Podcast feed is empty@shiannedierkes the only bug I’m aware of related to secured (https) sites, is where, depending on how the secure traffic is redirected, the stylesheet attached to the podcast RSS feed causes a similar problem. But there is usually an error in the console related to that, and I’m not sure this is the case.
In order to try and help you with this, I might need to direct you to our dedicated support channel, mostly so we can possibly look at digging into this problem for you. Could I ask you to email us at hello@castos.com, so we can take it further there?
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Podcast feed is empty@shiannedierkes that is strange, but it does point to something other than the plugin.
If it works on the staging site, but not on the live site, and everything is exactly the same, and you’ve cleared any caching, the other only reason I could think of is something specific to the live vs staging environments, in terms of hosting. It would be worthwhile to check your Site Health info and see if the same web server and PHP versions are used on both sites.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Podcast feed is emptyThank you, that is strange, usually I would expect to see something in the feed source, but it looks like something is blocking the content entirely.
Does your web host give you the option of a staging/testing environment. If you do have access to such an environment, are you able to clone your current site there, and disable all other plugins on the cloned site, and see if the error continues?
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Podcast feed is emptyCan you confirm, are you using version 2.0.4 of the plugin?
Can you post your feed url here, so that we can take a look.
Thanks
Forum: Plugins
In reply to: [Seriously Simple Podcasting] TranslationsHey @squazz thanks for your interest in translating the plugin.
We don’t actively maintain the po/pot files, as they are generated from the WordPress Polyglots project over at https://translate.wordpress.org/projects/wp-plugins/seriously-simple-podcasting/
However, there are some ways to generate these files, which are listed in this SO article – https://wordpress.stackexchange.com/questions/149212/how-to-create-pot-files-with-poedit
My suggestion would to use either the WordPress tools Otto mentions (https://wordpress.stackexchange.com/a/169282/103003) or the WP CLI option, just below it. (https://wordpress.stackexchange.com/a/321643/103003)
Regards
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Feed showing title from a post@cemcnulty thanks for the PR. I will review it next week.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Podcast feed is emptyHi @netzblogr
Can I ask you, what do you have set as the Episode description under Feed settings for this feed, is it set to Post Excerpt or Post Content.
The reason I ask is that the 2.0.3 update adds the <![CDATA[…]]> tags around the itunes:summary tag content, when the user has set Episode description to Post Content.
Thanks
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Broken Feed – excerpt problem@satnapar as we’ve resolved this issue I’m going to mark it as closed. Thanks for being willing to work with us to find the problem.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Broken Feed – excerpt problem@satnapar this does look like a conflict with WPBakery Page Builder.
In order to to better handle this request, could I ask you to email us at hello@castos.com, with the subject line WPBakery Page Builder conflict.
This will allow us to assign a developer to assist you.
Thanks
Hi @plainplow
You should be able to do the same thing as you are doing with Contact Form 7. The only difference would be knowing which scripts and styles to dequeue for the SSP plugin.
add_action( 'wp_enqueue_scripts', 'custom_contact_script_conditional_loading' ); function custom_contact_script_conditional_loading() { // Edit page IDs here if ( ! is_page( 206 ) ) { wp_dequeue_script( 'media-player' ); //Dequeue the media player script wp_dequeue_script( 'html5-player' ); //Dequeue the html player script wp_dequeue_style( 'ssp-frontend-player' ); //Dequeue the front end player CSS } }Forum: Plugins
In reply to: [Seriously Simple Podcasting] Issue with PHP 7.4?Hi @cjstone thanks for bringing this to our attention.
Could I ask you to log this as an issue in the GitHub repository.
https://github.com/TheCraigHewitt/Seriously-Simple-Podcasting/issues
As PHP 7.4 is fairly new, we’ve not been able to run a compatibility test with the plugin and PHP 7.4 as yet. However, if you log the ticket, we can look into it.
Thanks
@contemplate version 1.20.11 of the plugin shipped today, which includes two new filters ssp_enable_get_file_duration and ssp_enable_get_file_size. If you return false to these filters, they will disable the default get_file_duration and get_file_size functionality, for externally hosted files.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] class-frontend-controller.php errorsThis bug was fixed in the 1.20.11 version of the plugin, which was released today