Plugin Directory

Changeset 2578954


Ignore:
Timestamp:
08/05/2021 07:04:27 PM (5 years ago)
Author:
JDAdmin
Message:

WordPress 5.8

Location:
smartvideo/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • smartvideo/trunk/README.txt

    r2494445 r2578954  
    33Tags: video player, swarmify, youtube, cdn, vimeo, embed, pagespeed, html5, flash, mobile, blocks
    44Requires at least: 3.0.1
    5 Tested up to: 5.7
     5Tested up to: 5.8
    66Stable tag: trunk
    77Requires PHP: 5.5
     
    8888== Changelog ==
    8989
     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
    9095= 2.0.22 =
    9196* **Fairy dust magic for better PageSpeed Scores (FCP, LCP, CLS)**
  • smartvideo/trunk/SmartVideo.php

    r2494609 r2578954  
    1111 * Plugin URI:        https://swarmify.com/wordpress-plugin/
    1212 * Description:       SmartVideo makes building a beautiful, professional video experience for your site effortless.
    13  * Version:           2.0.22.1
     13 * Version:           2.0.23
    1414 * Author:            Swarmify
    1515 * Author URI:        https://swarmify.com/
     
    3030 * Rename this for your plugin and update it as you release new versions.
    3131 */
    32 define( 'SWARMIFY_PLUGIN_VERSION', '2.0.22.1' );
     32define( 'SWARMIFY_PLUGIN_VERSION', '2.0.23' );
    3333
    3434/**
  • smartvideo/trunk/page-builders/elementor/elementorsmartvideo.php

    r2418205 r2578954  
    300300        $width = $settings['video_width'];
    301301        $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) ;
    303303        $poster = !empty($poster_url) ? sprintf('poster="%s"', $poster_url) : '';
    304304
Note: See TracChangeset for help on using the changeset viewer.