PascalBajorat
Forum Replies Created
-
Hi Deborahjb,
thank you for the report, but I’ve tested it also with WordPress 3.5.1 and there are no problems for me.
– I think it’s possible that some of your other Plugins or Themes also use oEmbed Systems and there is a conflict between the two Plugins.
– Deactivate other Plugins and try it again
– Please make sure that you don’t wrap some other HTML-Elements around the URL
– What URL do you use? What is it for a file? mp3?
Forum: Plugins
In reply to: [PB oEmbed HTML5 Audio - with Cache Support] invisible on IE 8Hi thob,
I just tested it myself and there is no problem with IE8, but you need to note the following facts:
IE8 does not supports the HTML5 Audio Tag, so you need a installed Flash Player on that machine and turned on the flash_fallback (only if you use the Shortcode) and it’s really important that you use mp3 files.
Here you can find a HTML5 Audio Tag compatibility List:
I hope this will help you to find the problem, if not, please write me again.
kind regards
PascalP.S. Your Screenshot looks like problems with the Flash Player, please check your installed Player in IE.
Forum: Plugins
In reply to: [PB oEmbed HTML5 Audio - with Cache Support] Function for theme programming?Hi,
yes that’s no problem, here is my example code:
<?php // http://codex.wordpress.org/Function_Reference/get_post_meta $custom_field_mp3 = get_post_meta(get_the_ID(), 'mp3', true); if( !empty( $custom_field_mp3 ) ): // http://codex.wordpress.org/Function_Reference/do_shortcode echo do_shortcode('[audio mp3="'.$custom_field_mp3.'"]'); endif; ?>Please note: There is a new and important update out now v.2.2!
If you like the Plugin please rate it 😉
Forum: Plugins
In reply to: [GD Star Rating] GD Star Rating – AJAX XSS Errorgreat, thats it I’ve renamed the $types var and now it works fine.
Thx