Flowplayer5 plugin is not working properly
-
Hi, I had integrated Flowplayer5 Plugin in my WordPress project and it plays the video well but the controls are not visible. I have to right click the video and use the “show controls” option to get the control.
-
I already had done the settings required in admin panel to show control. but it still not displaying the controls.
The controls will show once you hover over the video. The option is so that the controls shows the whole time. Please could you share the link to the page.
Hey Ulrich, thanks for your response but in this site the problem is the controls not appear even on hover. We have to right click and select “Show Controls” to display the controls.Please check the link below of my site I had set the video on the home page and some other pages of the site you can check it.I am also linking the screenshots of the admin panel settings so if there is any problem there then please provide us some solution.
Below are links:
http://project-demo-server.info/river-site
http://project-demo-server.info/flowpayer_settings_page.png
http://project-demo-server.info/home_video_settings.pngHey, I found the problem. When I was creating the plugin I did not want the flowplayer files to load on every page unless there was a shortcode in the page content. This was to reduce issues and improve speed. As you are adding the shortcode differently the Flowplayer files are not being loaded.
I will add a filter in the next update which you can then use to define where the files should be loaded.
In your case in version 1.3.0 this would be the solution.
/** * Add additional tests where files should be loaded. */ function fp5_has_shortcode( $has_shortcode ) { global $post; $has_shortcode = has_shortcode( $post->post_content, 'flowplayer' ) || is_front_page(); return $has_shortcode; } add_filter( 'fp5_filter_has_shortcode', 'fp5_has_shortcode' );I will include more documentation to the FAQ once it has been released.
Hey Ulrich, I am adding that shortcode in the custom field because we have to make provision for the adding video differently. Also we call this shortcode by do_shortcode function so that it works on the front side.
I found that If I paste the above code that you given in the above post then it will work when we add shortcode into the content editor of the post but it will not work when we are just using the custom field so please give hint or code that how can I use it with the custom field and not with the content editor.Hey,
I am releasing a update by the weekend and then I will include the code in the FAQ then that you need to load the flowplayer files on other pages.
Hey, I have released the update. You can find code examples in the FAQ how to solve your issue.
Hey,
have the same problem. I have activated your Plugin today, because I wanna test it and if it works fine, wanna purchase it. Looks pretty nice..
I´ver insert your Code that is written in the FAQ inside my theme functions.php but it don´t work for me. The Video is on Frontpage.
The controls are not showing and the splashimage isn´t Fullsize, because there is a grey part on the right side.
Just can start the video with right click.
Regards
@bbindikator Please could you share your site?
See if this code works?
/** * Allow flowplayer files should be loaded on the home page. */ function fp5_has_shortcode( $has_shortcode ) { $has_shortcode = is_home(); return $has_shortcode; } add_filter( 'fp5_filter_has_shortcode', 'fp5_has_shortcode' );@wolverine052 I see you got it work.
@bbindikator I hope it worked for you. I will mark this as resolved. Let me know if it is not so.
After a lot of back and forth I was able to upload 2 videos directly from my flowplayer commercial account. See http://www.viuzworld.com/media. So far so good, but I have no customization and the size does not match my theme screen. Where do I go from here? Any suggestions? Incidentally, I bought a support session with the flowplayer folks and was rather disappointed with the service!
Let me check with my colleagues and I will get back to you. It is best that you do not hijack other peoples topics but create your own.
http://ww.wp.xz.cn/support/plugin/flowplayer5#postformHello
I’m new to wordpress and its plugin system.
I need to put some video outside the post text but in the video tab…See image here: http://i57.tinypic.com/2m5b9ts.jpg
Actually I’ve seen the FAQ but it is not listed where should i put that code or more precise instruction to make slug code works also in different position from post content. For example if I put in the video tab the code from youtube it works perfectly but if I put slug of flowplayer no.
Can someone help me to understand??
Thank you
Bye byeHey vercinstex,
Can you please start your own topic? http://ww.wp.xz.cn/support/plugin/flowplayer5#postform
When you do please tell me which plugin or theme is adding the tabs to the top of the post.
I would guess that you should be copy the video shortcode into that box.
The topic ‘Flowplayer5 plugin is not working properly’ is closed to new replies.