Version Description
- Fixed some deprecated function in the settings.
Download this release
Release Info
Developer | wptipsntricks |
Plugin | WP Video Lightbox |
Version | 1.7.9 |
Comparing to | |
See all releases |
Code changes from version 1.7.8 to 1.7.9
- readme.txt +7 -2
- wp-video-lightbox.php +2 -2
- wpvl-settings.php +1 -1
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: 4.
|
7 |
-
Stable tag: 1.7.
|
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.
|
@@ -15,6 +15,8 @@ The WordPress Video Lightbox plugin allows you to embed videos on a page using l
|
|
15 |
|
16 |
This plugin can be used to display images, flash, YouTube, Vimeo, iFrame etc in a lightbox overlay. The embedded videos can be viewed on iPhone and iPad too.
|
17 |
|
|
|
|
|
18 |
= Embedding Vimeo Video =
|
19 |
|
20 |
You can embed a vimeo video using the following shortcode in a WordPress post or page:
|
@@ -112,6 +114,9 @@ None
|
|
112 |
|
113 |
== Changelog ==
|
114 |
|
|
|
|
|
|
|
115 |
= 1.7.8 =
|
116 |
* Added "alt" parameter in the shortcode that can be used to describe the anchor image.
|
117 |
|
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: 4.5
|
7 |
+
Stable tag: 1.7.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.
|
15 |
|
16 |
This plugin can be used to display images, flash, YouTube, Vimeo, iFrame etc in a lightbox overlay. The embedded videos can be viewed on iPhone and iPad too.
|
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:
|
114 |
|
115 |
== Changelog ==
|
116 |
|
117 |
+
= 1.7.9 =
|
118 |
+
* Fixed some deprecated function in the settings.
|
119 |
+
|
120 |
= 1.7.8 =
|
121 |
* Added "alt" parameter in the shortcode that can be used to describe the anchor image.
|
122 |
|
wp-video-lightbox.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: WP Video Lightbox
|
4 |
-
Version: 1.7.
|
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.7.
|
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.7.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.7.9';
|
19 |
var $db_version = '1.0';
|
20 |
var $plugin_url;
|
21 |
var $plugin_path;
|
wpvl-settings.php
CHANGED
@@ -17,7 +17,7 @@ class Video_Lightbox_Settings_Page
|
|
17 |
'wp_video_lightbox' => __('General', 'wp-video-lightbox'),
|
18 |
'wp_video_lightbox&action=prettyPhoto' => __('prettyPhoto', 'wp-video-lightbox')
|
19 |
);
|
20 |
-
echo '<div class="wrap">
|
21 |
echo '<div id="poststuff"><div id="post-body">';
|
22 |
|
23 |
if(isset($_GET['page'])){
|
17 |
'wp_video_lightbox' => __('General', 'wp-video-lightbox'),
|
18 |
'wp_video_lightbox&action=prettyPhoto' => __('prettyPhoto', 'wp-video-lightbox')
|
19 |
);
|
20 |
+
echo '<div class="wrap"><h1>WP Video Lightbox v'.WP_VIDEO_LIGHTBOX_VERSION.'</h1>';
|
21 |
echo '<div id="poststuff"><div id="post-body">';
|
22 |
|
23 |
if(isset($_GET['page'])){
|