Changeset 2418205
- Timestamp:
- 11/13/2020 08:03:29 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) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
smartvideo/trunk/README.txt
r2373353 r2418205 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.5 5 Tested up to: 5.5.3 6 6 Stable tag: trunk 7 7 Requires PHP: 5.5 … … 88 88 == Changelog == 89 89 90 = 2.0.19 = 91 * **No need to fear, dynamic tags are here** 92 * Need to template up your massive video archive so that each post displays with the associated video in a SmartVideo tag. Easy breezy if you are an Elementor Pro user. Our SmartVideo widget can now dynamically load both the video source and/or poster image from any Elementor Pro dynamic tag. Quick, efficient, and beautiful 93 * Elementor SmartVideo widget supports [dynamic tags](https://elementor.com/help/dynamic-tags-pro/) for Elementor Pro users 94 90 95 = 2.0.18 = 91 96 * **Now you see me, now you don't** -
smartvideo/trunk/SmartVideo.php
r2373353 r2418205 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.1 813 * Version: 2.0.19 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.1 8' );32 define( 'SWARMIFY_PLUGIN_VERSION', '2.0.19' ); 33 33 34 34 /** -
smartvideo/trunk/page-builders/elementor/elementorsmartvideo.php
r2236145 r2418205 58 58 'video_type' => 'media_library', 59 59 ], 60 'dynamic' => [ 61 'active' => true, 62 ], 60 63 'default' => [ 61 64 'id' => '', … … 70 73 'label' => __( 'Link', 'swarmify' ), 71 74 'type' => Controls_Manager::TEXT, 72 'placeholder' => __( 'YouTube URL', 'swarmify' ) . ' (YouTube)', 75 'placeholder' => __( 'YouTube URL', 'swarmify' ) . ' (YouTube)', 76 'dynamic' => [ 77 'active' => true, 78 ], 73 79 'default' => 'https://www.youtube.com/watch?v=XHOmBV4js_E', 74 80 'label_block' => true, … … 84 90 'label' => __( 'Link', 'swarmify' ), 85 91 'type' => Controls_Manager::TEXT, 86 'placeholder' => __( 'Vimeo URL', 'swarmify' ) . ' (Vimeo)', 92 'placeholder' => __( 'Vimeo URL', 'swarmify' ) . ' (Vimeo)', 93 'dynamic' => [ 94 'active' => true, 95 ], 87 96 'default' => 'https://vimeo.com/235215203', 88 97 'label_block' => true, … … 103 112 'show_label' => false, 104 113 'media_type' => 'video', 105 'placeholder' => __( 'Enter your URL', 'swarmify' ), 114 'placeholder' => __( 'Enter your URL', 'swarmify' ), 115 'dynamic' => [ 116 'active' => true, 117 ], 106 118 'condition' => [ 107 119 'video_type' => 'another_source', … … 142 154 'condition' => [ 143 155 'poster' => 'media_library', 156 ], 157 'dynamic' => [ 158 'active' => true, 144 159 ], 145 160 ] … … 159 174 'condition' => [ 160 175 'poster' => 'another_source', 176 ], 177 'dynamic' => [ 178 'active' => true, 161 179 ], 162 180 ]
Note: See TracChangeset
for help on using the changeset viewer.