Janne Ala-Aijala
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [Flowplayer HTML5 for WordPress] Default Mute enabledHi solosails,
You can mute videos with this filter like this:
function fp_mute_video_by_default( $config, $video_id ) { if( $video_id == 5 ) { $config['muted'] = true; } return $config; } add_filter( 'fp5_js_config', 'fp_mute_video_by_default', 10, 2 );This will mute video with id 5, but if you want to mute all videos, you can just drop the if-condition.
I see that this issue still exists in the latest version. Is there any progress or fix upcoming?
Forum: Plugins
In reply to: [W3 Total Cache] APC gives warnings when using Fragment CacheApparently I patched this by myself by adding an int conversion to the given row.
Forum: Plugins
In reply to: [Attachments] Scandics breaks the plugin.Confirming this. I’m also using latest versions of wp and the plugin.
Also, can’t use any html tags (like strong or em) anymore, the entities are getting encoded to < and >.
By editing the raw custom field value I can get the entities (including scandics) to show correct, but they get messed up if I save the whole page again (== custom field gets updated).
Viewing 4 replies - 1 through 4 (of 4 total)