Version Description
- Video lightbox is now compatible with WordPress 5.0.
Download this release
Release Info
Developer | wptipsntricks |
Plugin | WP Video Lightbox |
Version | 1.8.8 |
Comparing to | |
See all releases |
Code changes from version 1.8.7 to 1.8.8
- readme.txt +7 -2
- wp-video-lightbox.php +2 -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:
|
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.
|
@@ -17,6 +17,8 @@ This plugin can be used to display images, flash, YouTube, Vimeo, iFrame etc in
|
|
17 |
|
18 |
https://www.youtube.com/watch?v=WoLLwF6OwzQ
|
19 |
|
|
|
|
|
20 |
= Embedding Vimeo Video =
|
21 |
|
22 |
You can embed a vimeo video using the following shortcode in a WordPress post or page:
|
@@ -115,6 +117,9 @@ None
|
|
115 |
|
116 |
== Changelog ==
|
117 |
|
|
|
|
|
|
|
118 |
= 1.8.7
|
119 |
* Fixed the YouTube autoplay option.
|
120 |
* Fixed close button was partially positioned behind the lightbox.
|
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.3
|
7 |
+
Stable tag: 1.8.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.
|
17 |
|
18 |
https://www.youtube.com/watch?v=WoLLwF6OwzQ
|
19 |
|
20 |
+
https://www.youtube.com/watch?v=kDN2d8jU3zM
|
21 |
+
|
22 |
= Embedding Vimeo Video =
|
23 |
|
24 |
You can embed a vimeo video using the following shortcode in a WordPress post or page:
|
117 |
|
118 |
== Changelog ==
|
119 |
|
120 |
+
= 1.8.8 =
|
121 |
+
* Video lightbox is now compatible with WordPress 5.0.
|
122 |
+
|
123 |
= 1.8.7
|
124 |
* Fixed the YouTube autoplay option.
|
125 |
* Fixed close button was partially positioned behind the lightbox.
|
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.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 |
{
|
16 |
class WP_Video_Lightbox
|
17 |
{
|
18 |
+
var $version = '1.8.8';
|
19 |
var $db_version = '1.0';
|
20 |
var $plugin_url;
|
21 |
var $plugin_path;
|