the code for the audio player is there buts it not showing
`<script type=”text/javascript”>
AudioPlayer.embed(“pod_audio_1”, {soundFile: “http%3A%2F%2Fradio.gamingfusion.net%2Fepisode%2FGFPodcast-Ep.2-CanadaDay.mp3”});
</script>
does it work for anyone else?
http://radio.gamingfusion.net
We’ve run into this problem with Blubrry PowerPress with some themes. The problem may be that the theme is using “the_excerpt” instead of “the_content”. When the excerpt is used, only the first X characters in the blog post are shown and the remaining code required to make the player appear is not complete.
If you are using the Blubrry PowerPress plugin and run into this problem, our fix is to enter the following define near the top of your wp-config.php file which configures PowerPress to add the player after the plugins and themes modify the excerpt.
define(“POWERPRESS_CONTENT_ACTION_PRIORITY”, 101);
This may still not work with your theme if the theme developer is modifying the excerpt/description directly. If that is the case, and you feel comfortable editing your theme, you can add the following code where you want PowerPress to insert the media player in your theme’s pages.
<?php if( function_exists(“the_powerpress_content”) ) the_powerpress_content(); ?>