cclark07
Forum Replies Created
-
@darkfreaks again, I appreciate the reply. Unfortunately, none of the solutions detailed in the article you’ve linked fix the issue.
@darkfreaks thanks for the reply. We are currently using WordPress 5.0.3, which is supported by the plugin as per the documentation. I’ve also confirmed that the issue remains after updating to the latest version (WordPress 5.2).
Cheers
I have found a similar thread in the forum regarding the incorrect addition of a “Save” action on imported forms.
https://wordpress.org/support/topic/importing-a-form-creates-a-new-save-form-action/#post-10170336It has been marked resolved, however the issue reported on Github (Oct 31, 2017) is still open.
https://github.com/wpninjas/ninja-forms/issues/3181Are there any updates regarding this issue?
Cheers!
Any update on this? I’ve actually just posted a similar concern on the support forums.
Forum: Plugins
In reply to: [PowerPress Podcasting plugin by Blubrry] Powerpress PHP APIUpdate: I’ve found a way to embed the player in a non-post template file. It requires calling the
do_shortcode()PHP function and passing in the powerpress shortcode syntax.
Just for anyone who needs it, my call looks like this:
<?php echo do_shortcode('[powerpress url="'.$podcast_episode_audio.'"]'); ?>The
$podcast_episode_audiovariable is the url pulled from the enclosure data returned from thepowerpress_get_enclosure_data()function:
$podcast_enclosure_data = powerpress_get_enclosure_data($post_id, $feed_slug='your_feed_slug');
$podcast_episode_audio = $podcast_enclosure_data['url'];I’m now working on pulling the download link in a similar manner. I will update here if/when I find the solution.
Forum: Plugins
In reply to: [PowerPress Podcasting plugin by Blubrry] Powerpress PHP APIHey @shawnogordo, @amandato,
I’m not sure I’ll be bundling this up into a plugin just yet, but maybe in the future! I’m currently trying to create a re-usable Podcast Episode component so we can highlight specific episodes throughout our site.
I’ve successfully pulled all of the meta data from the post object (enclosure, metamarks, etc.), the issue I’m having now is rendering the podcast player within the component template file. So, in the post template file (single-podcast.php)the_powerpress_content();works fine. However, I’m trying to reference this outside of that file and it is returning an empty string.
Is there a way to pull the content (audio player, player links) for a specific post object/id?Our set up might be a little confusing so let me know if you need clarification!
Cheers!
Forum: Plugins
In reply to: [PowerPress Podcasting plugin by Blubrry] Powerpress PHP APIThanks for the quick response @amandato!
I’m using the plugin mainly to gather the RSS feed information and create custom posts. My plan was to then manually access the data via PHP in the post template and create my own markup/styles. At the moment I’ve found ways to access the data I need but it’s still in early development so that may change (requirements shift often unfortunately).
I should have a better idea of what is missing, if anything, early next week. I’ll post here to confirm all is well, or to ask for some more help if necessary.One thing that I’m curious about is if it’s possible to pull in new RSS items as they are published to Libsyn. Otherwise our editors will need to manually update the posts by re-importing the feed. It’s not the end of the world if that is the case, but it would be nice to automate as much as possible.
Thanks again!
- This reply was modified 8 years, 7 months ago by cclark07.