Version Description
- Made some changes to the settings.
Download this release
Release Info
Developer | wptipsntricks |
Plugin | WP Video Lightbox |
Version | 1.8.9 |
Comparing to | |
See all releases |
Code changes from version 1.8.8 to 1.8.9
- readme.txt +5 -2
- wp-video-lightbox.php +2 -2
- wpvl-settings.php +4 -2
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: Tips and Tricks HQ, Ruhul Amin, wptipsntricks
|
|
3 |
Donate link: https://www.tipsandtricks-hq.com/
|
4 |
Tags: wordpress lightbox, wordpress video lightbox, video lightbox, wp video lightbox, wordpress video embed, add video to wordpress, gallery, image, images, lightbox, lightview, overlay, photo, photos, picture, video
|
5 |
Requires at least: 3.0
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 1.8.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Very easy to use WordPress lightbox plugin to display YouTube and Vimeo videos in an elegant lightbox overlay.
|
@@ -117,6 +117,9 @@ None
|
|
117 |
|
118 |
== Changelog ==
|
119 |
|
|
|
|
|
|
|
120 |
= 1.8.8 =
|
121 |
* Video lightbox is now compatible with WordPress 5.0.
|
122 |
|
3 |
Donate link: https://www.tipsandtricks-hq.com/
|
4 |
Tags: wordpress lightbox, wordpress video lightbox, video lightbox, wp video lightbox, wordpress video embed, add video to wordpress, gallery, image, images, lightbox, lightview, overlay, photo, photos, picture, video
|
5 |
Requires at least: 3.0
|
6 |
+
Tested up to: 5.4
|
7 |
+
Stable tag: 1.8.9
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Very easy to use WordPress lightbox plugin to display YouTube and Vimeo videos in an elegant lightbox overlay.
|
117 |
|
118 |
== Changelog ==
|
119 |
|
120 |
+
= 1.8.9 =
|
121 |
+
* Made some changes to the settings.
|
122 |
+
|
123 |
= 1.8.8 =
|
124 |
* Video lightbox is now compatible with WordPress 5.0.
|
125 |
|
wp-video-lightbox.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: WP Video Lightbox
|
4 |
-
Version: 1.8.
|
5 |
Plugin URI: https://www.tipsandtricks-hq.com/?p=2700
|
6 |
Author: Tips and Tricks HQ, Ruhul Amin
|
7 |
Author URI: https://www.tipsandtricks-hq.com/
|
@@ -15,7 +15,7 @@ if (!class_exists('WP_Video_Lightbox'))
|
|
15 |
{
|
16 |
class WP_Video_Lightbox
|
17 |
{
|
18 |
-
var $version = '1.8.
|
19 |
var $db_version = '1.0';
|
20 |
var $plugin_url;
|
21 |
var $plugin_path;
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: WP Video Lightbox
|
4 |
+
Version: 1.8.9
|
5 |
Plugin URI: https://www.tipsandtricks-hq.com/?p=2700
|
6 |
Author: Tips and Tricks HQ, Ruhul Amin
|
7 |
Author URI: https://www.tipsandtricks-hq.com/
|
15 |
{
|
16 |
class WP_Video_Lightbox
|
17 |
{
|
18 |
+
var $version = '1.8.9';
|
19 |
var $db_version = '1.0';
|
20 |
var $plugin_url;
|
21 |
var $plugin_path;
|
wpvl-settings.php
CHANGED
@@ -135,8 +135,10 @@ class Video_Lightbox_Settings_Page
|
|
135 |
$wpvl_prettyPhoto->autoplay = (isset($_POST["autoplay"]))?'true':'false';
|
136 |
$wpvl_prettyPhoto->modal = (isset($_POST["modal"]))?'true':'false';
|
137 |
$wpvl_prettyPhoto->deeplinking = (isset($_POST["deeplinking"]))?'true':'false';
|
|
|
138 |
$wpvl_prettyPhoto->overlay_gallery = (isset($_POST["overlay_gallery"]))?'true':'false';
|
139 |
$wpvl_prettyPhoto->overlay_gallery_max = trim($_POST["overlay_gallery_max"]);
|
|
|
140 |
$wpvl_prettyPhoto->keyboard_shortcuts = (isset($_POST["keyboard_shortcuts"]))?'true':'false';
|
141 |
$wpvl_prettyPhoto->ie6_fallback = (isset($_POST["ie6_fallback"]))?'true':'false';
|
142 |
|
@@ -307,7 +309,7 @@ class Video_Lightbox_Settings_Page
|
|
307 |
<?php _e('Allow prettyPhoto to update the url to enable deeplinking. [default: true]', 'wp-video-lightbox')?></label>
|
308 |
</fieldset></td>
|
309 |
</tr>
|
310 |
-
|
311 |
<tr valign="top">
|
312 |
<th scope="row"><?php _e('Overlay gallery', 'wp-video-lightbox')?></th>
|
313 |
<td> <fieldset><legend class="screen-reader-text"><span><?php _e('Overlay gallery', 'wp-video-lightbox')?></span></legend><label for="overlay_gallery">
|
@@ -321,7 +323,7 @@ class Video_Lightbox_Settings_Page
|
|
321 |
<td><input name="overlay_gallery_max" type="text" id="overlay_gallery_max" value="<?php echo $wpvl_prettyPhoto->overlay_gallery_max; ?>" class="regular-text">
|
322 |
<p class="description"><?php echo sprintf(__('Maximum number of pictures in the overlay gallery [default: %s]', 'wp-video-lightbox'), '30')?></p></td>
|
323 |
</tr>
|
324 |
-
|
325 |
<tr valign="top">
|
326 |
<th scope="row"><?php _e('Keyboard shortcuts', 'wp-video-lightbox')?></th>
|
327 |
<td> <fieldset><legend class="screen-reader-text"><span><?php _e('Keyboard shortcuts', 'wp-video-lightbox')?></span></legend><label for="keyboard_shortcuts">
|
135 |
$wpvl_prettyPhoto->autoplay = (isset($_POST["autoplay"]))?'true':'false';
|
136 |
$wpvl_prettyPhoto->modal = (isset($_POST["modal"]))?'true':'false';
|
137 |
$wpvl_prettyPhoto->deeplinking = (isset($_POST["deeplinking"]))?'true':'false';
|
138 |
+
/*
|
139 |
$wpvl_prettyPhoto->overlay_gallery = (isset($_POST["overlay_gallery"]))?'true':'false';
|
140 |
$wpvl_prettyPhoto->overlay_gallery_max = trim($_POST["overlay_gallery_max"]);
|
141 |
+
*/
|
142 |
$wpvl_prettyPhoto->keyboard_shortcuts = (isset($_POST["keyboard_shortcuts"]))?'true':'false';
|
143 |
$wpvl_prettyPhoto->ie6_fallback = (isset($_POST["ie6_fallback"]))?'true':'false';
|
144 |
|
309 |
<?php _e('Allow prettyPhoto to update the url to enable deeplinking. [default: true]', 'wp-video-lightbox')?></label>
|
310 |
</fieldset></td>
|
311 |
</tr>
|
312 |
+
<!--
|
313 |
<tr valign="top">
|
314 |
<th scope="row"><?php _e('Overlay gallery', 'wp-video-lightbox')?></th>
|
315 |
<td> <fieldset><legend class="screen-reader-text"><span><?php _e('Overlay gallery', 'wp-video-lightbox')?></span></legend><label for="overlay_gallery">
|
323 |
<td><input name="overlay_gallery_max" type="text" id="overlay_gallery_max" value="<?php echo $wpvl_prettyPhoto->overlay_gallery_max; ?>" class="regular-text">
|
324 |
<p class="description"><?php echo sprintf(__('Maximum number of pictures in the overlay gallery [default: %s]', 'wp-video-lightbox'), '30')?></p></td>
|
325 |
</tr>
|
326 |
+
-->
|
327 |
<tr valign="top">
|
328 |
<th scope="row"><?php _e('Keyboard shortcuts', 'wp-video-lightbox')?></th>
|
329 |
<td> <fieldset><legend class="screen-reader-text"><span><?php _e('Keyboard shortcuts', 'wp-video-lightbox')?></span></legend><label for="keyboard_shortcuts">
|