Changeset 2578954
- Timestamp:
- 08/05/2021 07:04:27 PM (5 years ago)
- Location:
- smartvideo/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
SmartVideo.php (modified) (2 diffs)
-
page-builders/elementor/elementorsmartvideo.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
smartvideo/trunk/README.txt
r2494445 r2578954 3 3 Tags: video player, swarmify, youtube, cdn, vimeo, embed, pagespeed, html5, flash, mobile, blocks 4 4 Requires at least: 3.0.1 5 Tested up to: 5. 75 Tested up to: 5.8 6 6 Stable tag: trunk 7 7 Requires PHP: 5.5 … … 88 88 == Changelog == 89 89 90 = 2.0.23 = 91 * **Welcome Tatum(WP 5.8)** 92 * WordPress 5.8 is out with many new and awesome features. SmartVideo fully supports this new version so worry not. Have your cake and eat it too! Yum 93 * Fixing an Elementor bug that caused unseemly warnings to appear while in dev mode. Can't have that now. 94 90 95 = 2.0.22 = 91 96 * **Fairy dust magic for better PageSpeed Scores (FCP, LCP, CLS)** -
smartvideo/trunk/SmartVideo.php
r2494609 r2578954 11 11 * Plugin URI: https://swarmify.com/wordpress-plugin/ 12 12 * Description: SmartVideo makes building a beautiful, professional video experience for your site effortless. 13 * Version: 2.0.2 2.113 * Version: 2.0.23 14 14 * Author: Swarmify 15 15 * Author URI: https://swarmify.com/ … … 30 30 * Rename this for your plugin and update it as you release new versions. 31 31 */ 32 define( 'SWARMIFY_PLUGIN_VERSION', '2.0.2 2.1' );32 define( 'SWARMIFY_PLUGIN_VERSION', '2.0.23' ); 33 33 34 34 /** -
smartvideo/trunk/page-builders/elementor/elementorsmartvideo.php
r2418205 r2578954 300 300 $width = $settings['video_width']; 301 301 $responsive = 'yes' === $settings['responsive'] ? 'class="swarm-fluid"':''; 302 $poster_url = $settings['poster_media_library'] ? $settings['poster_media_library']['url'] : $settings['poster_another_src']['url'];302 $poster_url = $settings['poster_media_library'] ? $settings['poster_media_library']['url'] : ($settings['poster_another_src'] ? $settings['poster_another_src']['url'] : null) ; 303 303 $poster = !empty($poster_url) ? sprintf('poster="%s"', $poster_url) : ''; 304 304
Note: See TracChangeset
for help on using the changeset viewer.