pushlabs
Forum Replies Created
-
Forum: Plugins
In reply to: [Video Background] Fallback images not workingHi Cuniomk,
Thanks for the URLs!
This is due to lines 39-41 in your child theme’s style.css:
.vidbg-container { z-index: 1; }Setting Video Background’s z-index to 1 will hide all content inside of the container. This is a theme related issue. Removing this code block should do the trick for you.
This was likely caused due to CSS being moved to a stylesheet in 2.6.0 rather than being added inline through jQuery, and as a result, is taking precedence differently.
Blake
- This reply was modified 8 years, 7 months ago by pushlabs.
Forum: Plugins
In reply to: [Video Background] Videos don’t work on iPhone 7Hey winterstreet,
You are correct. in 2.5.8 video backgrounds on mobile were all supposed to revert to fallback, however, some devices displayed them as our code could not detect all video backgrounds on mobiles.
Our new release does a pretty good job at catching all mobiles and displays the fallback. We changed over for consistency purposes, as the intended effect was not occurring on all devices, however, if you like that functionality, you can downgrade to one of these versions here: https://plugins.svn.wordpress.org/video-background/tags/
Blake
Forum: Plugins
In reply to: [Video Background] Videos don’t work on iPhone 7Hi winterstreet,
I’m sorry I was mistaken by your question. I thought your fallback poster was not showing up.
You are correct. Videos do not play on iPhone 7, or any mobile device for that matter. Mobile devices actually resort to the fallback image (poster) provided for consistency across all devices.
Blake
Forum: Plugins
In reply to: [Video Background] Applying video background to body site-wideHi jfpyle,
You would use the same code posted above, however, change the “container” property in the shortcode.
Forum: Plugins
In reply to: [Video Background] Videos don’t work on iPhone 7Hi winterstreet,
Can you provide more details?
Wordpress version, URL, IOS version, etc?
Blake
Forum: Plugins
In reply to: [Video Background] Fallback images not workingHi Cuniomk,
Thanks for using Video Background!
Thanks for bringing this to attention. I didn’t realize people may use Video Background for this functionality. I’ve send an update, 2.6.3, that addresses this.
This will resolve the issue with fallback images when no video links are supplied.
Please let me know how it works for you!
Blake
Forum: Plugins
In reply to: [Video Background] Not Working on live serverThank you, Jan.
Blake
Forum: Plugins
In reply to: [Video Background] Upgraded to 2.6 Video Background Stopped WorkingThe issue is fixed in the 2.6.1 update. Sorry for any inconvenience.
Please see this thread for more details:
https://wordpress.org/support/topic/temporary-solution-do-not-ugrade/Blake
Forum: Plugins
In reply to: [Video Background] Shortcode not working anymoreThe issue is fixed in the 2.6.1 update. Sorry for any inconvenience.
Please see this thread for more details:
https://wordpress.org/support/topic/temporary-solution-do-not-ugrade/Blake
Forum: Plugins
In reply to: [Video Background] Videos don’t work on iPhone 7The issue is fixed in the 2.6.1 update. Sorry for any inconvenience.
Please see this thread for more details:
https://wordpress.org/support/topic/temporary-solution-do-not-ugrade/Blake
Forum: Plugins
In reply to: [Video Background] Not Working on live serverThe issue is fixed in the 2.6.1 update. Sorry for any inconvenience.
Please see this thread for more details:
https://wordpress.org/support/topic/temporary-solution-do-not-ugrade/Blake
Forum: Plugins
In reply to: [Video Background] Videos don’t work on iPhone 7Hi Winterstreet,
Thanks for using Video Background!
There was an issue in Safari on High Sierra and IOS 11. Video Background 2.6 fixes those compatibility issues.
Blake
Forum: Plugins
In reply to: [Video Background] Video not working safariHi deshmukh.7177,
Video Background should work just fine in Safari. Could you provide a URL?
It’s also important to make sure you have both .mp4 and .webm files for browser compatibility as well as the applicable MIME types set up on your web hosting server to ensure the videos can be played.
Blake
Forum: Plugins
In reply to: [Video Background] Metabox for category pages?Hi luukkeee,
There is no way to display the Video Background metabox on the category pages. However, if you’d like a video background on a category archive page on the frontend you can use this function:
/** * Conditional Video Background Pro shortcode on category pages * @author Push Labs * @version 0.26.17 */ function vidbgpro_category_shortcode() { /** * This conditional statement checks if the current page * is an archive and category page. If it is not, quit. */ if ( ! is_archive() && ! is_category() ) { return; } // Create our shortcode $shortcode = '[vidbg container=”body” mp4=”#” webm=”#” poster=”#” muted=”true” loop=”true” overlay=”false” overlay_color=”#000″ overlay_alpha=”0.3″]'; // activate our shortcude using the do_shortcode() function echo do_shortcode( $shortcode ); } add_action( 'wp_footer', 'vidbgpro_category_shortcode' );Adding this to the functions.php page will execute that shortcode when on a category archive page. Additionally, you can show different videos on different categories if you’d like with a conditional
is_category(). You can learn more about this function here: https://developer.wordpress.org/reference/functions/is_category/Blake