I had everything working correctly but then the plugin stopped updating on Oct 27
Tried to re-enter API key and everything but now nothing is showing on my site
https://rantingmedia.com/listen/
Using shortcode [simcast]
I am on PHP 7.4 which might be the problem?
Please advise what I can do to fix
]]>Would love to have an option to display the notes on my page, instead of the link to the Simplecast page.
Also would love an option to not display the notes at all.
Hi, I am trying to embed a Simplecast Podcast onto a page. I have added the plugin and have tried the following shortcode, but nothing displays.
[simcast][/simcast]
[simcast url=”https://feeds.simplecast.com/B_G4Sj6F”%5D%5B/simcast%5D
What I am wanting to have are the full podcast to be embedded on this page with the most recent episodes first and for it to auto-update anytime there is new episodes.
]]>At least with the v1 implementation (couldn’t test v2) on release 0.2.1, scheduled episodes get published, despite the fact, that they most luikely shouldn’t be.
I implemented a fix in Simcast_Plugin.php
, adding
if ($episode->published) { … }
around the block starting at line 228.
I feel that this should be added, or at least be an option the client can change on the settings-page.
Mario
]]>I don’t have SVN installed here, so I’ll give you my feedback here:
In Simcast_Plugin.php:145:
$simcast_v2 = get_option('Simcast_Plugin_UseV2');
does not actually set the correct boolean value to $simcast_v2
, causing the Plugin to not work with Simplecast v1 anymore.
The following modification fixes this behavior:
$simcast_v2 = get_option('Simcast_Plugin_UseV2') == "true";
It would be great if you could commit this to the code. Thank you!
Mario
Hi, how do I find the show ID in the new Simplecast? I have two shows, and they both have a whole bunch of numbers in the URL.
Thanks.
]]>