Version Description
Fixed: Removed editor button from hotspot layer. Added: Demo sliders page.
Download this release
Release Info
Developer | webdorado |
Plugin | Slider by WD – Responsive Slider |
Version | 1.0.30 |
Comparing to | |
See all releases |
Code changes from version 1.0.29 to 1.0.30
- demo_sliders/demo_sliders.php +34 -0
- demo_sliders/images/1.png +0 -0
- demo_sliders/images/10.png +0 -0
- demo_sliders/images/11.png +0 -0
- demo_sliders/images/2.png +0 -0
- demo_sliders/images/3.png +0 -0
- demo_sliders/images/4.png +0 -0
- demo_sliders/images/5.png +0 -0
- demo_sliders/images/6.png +0 -0
- demo_sliders/images/7.png +0 -0
- demo_sliders/images/8.png +0 -0
- demo_sliders/images/9.png +0 -0
- demo_sliders/images/down.png +0 -0
- demo_sliders/images/down_hover.png +0 -0
- demo_sliders/style.css +76 -0
- readme.txt +7 -1
- slider-wd.php +20 -2
demo_sliders/demo_sliders.php
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
function spider_demo_sliders() {
|
3 |
+
$demo_sliders = array(
|
4 |
+
'layer-slider' => 'LAYER SLIDER',
|
5 |
+
'slider-pro-2' => 'LAYER SLIDER 2',
|
6 |
+
'slide1' => 'MULTY LAYER SLIDER',
|
7 |
+
'news-site-or-blog' => 'NEWS SITE OR BLOG SLIDER',
|
8 |
+
'post-feed-demo' => 'POST FEED DEMO SLIDER',
|
9 |
+
'online-store' => 'ONLINE STORE SLIDER',
|
10 |
+
'portfolio' => 'PORTFOLIO SLIDER',
|
11 |
+
'slide2' => '3D FULL-WIDTH SLIDER',
|
12 |
+
'slide3' => 'FILMSTRIP SLIDER',
|
13 |
+
'slide4' => 'ZOOM EFFECT SLIDER',
|
14 |
+
'wordpress-slider-wd-carusel' => 'CAROUSEL SLIDER',
|
15 |
+
);
|
16 |
+
?>
|
17 |
+
<div id="main_featured_sliders_page">
|
18 |
+
<h3>Slider Pro</h3>
|
19 |
+
<p>You can download and import these demo sliders in your website by using Import / Export feature.</p>
|
20 |
+
<ul id="featured-sliders-list">
|
21 |
+
<?php
|
22 |
+
foreach ($demo_sliders as $key => $demo_slider) {
|
23 |
+
?>
|
24 |
+
<li class="<?php echo $key; ?>">
|
25 |
+
<div class="product"></div>
|
26 |
+
<a target="_blank" href="http://wpdemo.web-dorado.com/<?php echo $key; ?>" class="download"><span>DOWNLOAD <?php echo $demo_slider; ?></span></a>
|
27 |
+
</li>
|
28 |
+
<?php
|
29 |
+
}
|
30 |
+
?>
|
31 |
+
</ul>
|
32 |
+
</div>
|
33 |
+
<?php
|
34 |
+
}
|
demo_sliders/images/1.png
ADDED
Binary file
|
demo_sliders/images/10.png
ADDED
Binary file
|
demo_sliders/images/11.png
ADDED
Binary file
|
demo_sliders/images/2.png
ADDED
Binary file
|
demo_sliders/images/3.png
ADDED
Binary file
|
demo_sliders/images/4.png
ADDED
Binary file
|
demo_sliders/images/5.png
ADDED
Binary file
|
demo_sliders/images/6.png
ADDED
Binary file
|
demo_sliders/images/7.png
ADDED
Binary file
|
demo_sliders/images/8.png
ADDED
Binary file
|
demo_sliders/images/9.png
ADDED
Binary file
|
demo_sliders/images/down.png
ADDED
Binary file
|
demo_sliders/images/down_hover.png
ADDED
Binary file
|
demo_sliders/style.css
ADDED
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#main_featured_sliders_page h3 {
|
2 |
+
color: rgb(111, 111, 111);
|
3 |
+
font-family: Segoe UI;
|
4 |
+
font-size: 30px;
|
5 |
+
margin: 0px;
|
6 |
+
padding: 20px 0px 10px 0px;
|
7 |
+
width: 99%;
|
8 |
+
}
|
9 |
+
|
10 |
+
#main_featured_sliders_page p {
|
11 |
+
color: rgb(111, 111, 111);
|
12 |
+
font-family: Segoe UI;
|
13 |
+
font-size: 20px;
|
14 |
+
margin: 0px;
|
15 |
+
}
|
16 |
+
|
17 |
+
#main_featured_sliders_page #featured-sliders-list {
|
18 |
+
position: relative;
|
19 |
+
width: 95.4%;
|
20 |
+
height: auto;
|
21 |
+
display: table;
|
22 |
+
list-style: none;
|
23 |
+
}
|
24 |
+
|
25 |
+
#main_featured_sliders_page #featured-sliders-list li {
|
26 |
+
float: left;
|
27 |
+
width: 310px;
|
28 |
+
margin: 10px 30px 20px 0px;
|
29 |
+
height: 242px;
|
30 |
+
}
|
31 |
+
|
32 |
+
#main_featured_sliders_page #featured-sliders-list li .product {
|
33 |
+
position:relative;
|
34 |
+
height: 200px;
|
35 |
+
border: 1px solid #DCDCDC;
|
36 |
+
background-size: 100% !important;
|
37 |
+
}
|
38 |
+
|
39 |
+
#main_featured_sliders_page #featured-sliders-list li.layer-slider .product {background:url("images/1.png") left center no-repeat;}
|
40 |
+
#main_featured_sliders_page #featured-sliders-list li.slider-pro-2 .product {background:url("images/9.png") left center no-repeat;}
|
41 |
+
#main_featured_sliders_page #featured-sliders-list li.slide1 .product {background:url("images/8.png") left center no-repeat; }
|
42 |
+
#main_featured_sliders_page #featured-sliders-list li.news-site-or-blog .product {background:url("images/7.png") left center no-repeat;}
|
43 |
+
#main_featured_sliders_page #featured-sliders-list li.post-feed-demo .product {background:url("images/6.png") left center no-repeat;}
|
44 |
+
#main_featured_sliders_page #featured-sliders-list li.online-store .product {background:url("images/5.png") left center no-repeat;}
|
45 |
+
#main_featured_sliders_page #featured-sliders-list li.portfolio .product {background:url("images/4.png") left center no-repeat;}
|
46 |
+
#main_featured_sliders_page #featured-sliders-list li.slide2 .product {background:url("images/3.png") left center no-repeat;}
|
47 |
+
#main_featured_sliders_page #featured-sliders-list li.slide3 .product {background:url("images/10.png") left center no-repeat;}
|
48 |
+
#main_featured_sliders_page #featured-sliders-list li.slide4 .product {background:url("images/11.png") left center no-repeat;}
|
49 |
+
#main_featured_sliders_page #featured-sliders-list li.wordpress-slider-wd-carusel .product {background:url("images/2.png") left center no-repeat;}
|
50 |
+
|
51 |
+
#featured-sliders-list li a.download {
|
52 |
+
outline: none;
|
53 |
+
display: inline-block;
|
54 |
+
margin-top: 7px;
|
55 |
+
font-size: 11px;
|
56 |
+
border: 1px solid #DCDCDC;
|
57 |
+
font-weight: bold;
|
58 |
+
background: #FFFFFF url("images/down.png") no-repeat 6px center;
|
59 |
+
color: #66686B;
|
60 |
+
padding: 9px 12px 9px 45px;
|
61 |
+
width: 100%;
|
62 |
+
box-sizing: border-box;
|
63 |
+
-webkit-box-sizing: border-box;
|
64 |
+
-moz-box-sizing: border-box;
|
65 |
+
text-decoration: none;
|
66 |
+
}
|
67 |
+
|
68 |
+
#featured-sliders-list .download span {
|
69 |
+
border-left: 1px solid #A7A9AB;
|
70 |
+
padding: 4px 10px 4px 10px;
|
71 |
+
}
|
72 |
+
|
73 |
+
#featured-sliders-list .download:hover {
|
74 |
+
background: #23282D url("images/down_hover.png") no-repeat 6px center;
|
75 |
+
color: #DDDEDE;
|
76 |
+
}
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-slider-plugin.html
|
|
4 |
Tags: best slider plugin, carousel, carousel slider, coin slider, content slider, content slideshow, custom video slider, flex slider, free video slider, free video slideshow, Horizontal slider, Image Rotator, image slider, image slideshow, javascript slider, javascript slideshow, jquery slider, jquery slideshow, Photo Slider, posts slider, responsive slider, responsive slideshow, sidebar, slide, slide show, slider, slider plugin, slider widget, slides, slideshow,slideshow manager, slideshow plugin, vertical slider, video slider, video slideshow,vimeo slideshow, vimeo slider, widget slider, widget slideshow, wordpress slider, wordpress slideshow, wp slider, youtube slider, youtube slideshow, post slider, fullscreen Slider, css3 slider, responsive image slider, banner slider, social slider, cycle slider, text slider, revolution slider, thumbnail slider, touch slider, sliders, parallax slider, 3D slider, coinslider, featured-content-slider, image, images, picture, pictures, picture slider, responsive, shortcode, widget, vertical slides, autoplay, auto, jquery, rotate, flexslider, gallery, photo gallery, javascript, rotator, wordpress picture slider, wordpress responsive slider, animation, best slider, fullwidth slider, mobile slider, swipe, layer, layer slider, product slider
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.2
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -16,6 +16,8 @@ Create responsive, highly configurable sliders with various effects for your Wor
|
|
16 |
https://www.youtube.com/watch?v=xebpM_-GwG0&index=1&list=PLnxWPiY5tLFWQf5XaEYYPZj0gdggUrVxP
|
17 |
|
18 |
[WordPress Slider Plugin](http://web-dorado.com/products/wordpress-slider-plugin.html)
|
|
|
|
|
19 |
[User Manual](http://web-dorado.com/wordpress-slider-wd-guide-step-1.html)
|
20 |
[Support Forum](http://web-dorado.com/forum/slider-plugin.html)
|
21 |
[How to change and modify Slider WD Settings](https://www.youtube.com/watch?v=Peny_dkHaMo&list=PLnxWPiY5tLFWQf5XaEYYPZj0gdggUrVxP&index=3)
|
@@ -140,6 +142,10 @@ After downloading the ZIP file of the slider plugin,
|
|
140 |
|
141 |
== Changelog ==
|
142 |
|
|
|
|
|
|
|
|
|
143 |
= 1.0.29 =
|
144 |
Fixed: Multiple sliders in a page.
|
145 |
|
4 |
Tags: best slider plugin, carousel, carousel slider, coin slider, content slider, content slideshow, custom video slider, flex slider, free video slider, free video slideshow, Horizontal slider, Image Rotator, image slider, image slideshow, javascript slider, javascript slideshow, jquery slider, jquery slideshow, Photo Slider, posts slider, responsive slider, responsive slideshow, sidebar, slide, slide show, slider, slider plugin, slider widget, slides, slideshow,slideshow manager, slideshow plugin, vertical slider, video slider, video slideshow,vimeo slideshow, vimeo slider, widget slider, widget slideshow, wordpress slider, wordpress slideshow, wp slider, youtube slider, youtube slideshow, post slider, fullscreen Slider, css3 slider, responsive image slider, banner slider, social slider, cycle slider, text slider, revolution slider, thumbnail slider, touch slider, sliders, parallax slider, 3D slider, coinslider, featured-content-slider, image, images, picture, pictures, picture slider, responsive, shortcode, widget, vertical slides, autoplay, auto, jquery, rotate, flexslider, gallery, photo gallery, javascript, rotator, wordpress picture slider, wordpress responsive slider, animation, best slider, fullwidth slider, mobile slider, swipe, layer, layer slider, product slider
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.2
|
7 |
+
Stable tag: 1.0.30
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
16 |
https://www.youtube.com/watch?v=xebpM_-GwG0&index=1&list=PLnxWPiY5tLFWQf5XaEYYPZj0gdggUrVxP
|
17 |
|
18 |
[WordPress Slider Plugin](http://web-dorado.com/products/wordpress-slider-plugin.html)
|
19 |
+
[Demo](http://wpdemo.web-dorado.com/slider/)
|
20 |
+
[Demo Admin](http://wpdemo.web-dorado.com/wp-admin/admin.php?page=sliders_wds)
|
21 |
[User Manual](http://web-dorado.com/wordpress-slider-wd-guide-step-1.html)
|
22 |
[Support Forum](http://web-dorado.com/forum/slider-plugin.html)
|
23 |
[How to change and modify Slider WD Settings](https://www.youtube.com/watch?v=Peny_dkHaMo&list=PLnxWPiY5tLFWQf5XaEYYPZj0gdggUrVxP&index=3)
|
142 |
|
143 |
== Changelog ==
|
144 |
|
145 |
+
= 1.0.30 =
|
146 |
+
Fixed: Removed editor button from hotspot layer.
|
147 |
+
Added: Demo sliders page.
|
148 |
+
|
149 |
= 1.0.29 =
|
150 |
Fixed: Multiple sliders in a page.
|
151 |
|
slider-wd.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: Slider WD
|
5 |
* Plugin URI: https://web-dorado.com/products/wordpress-slider-plugin.html
|
6 |
* Description: This is a responsive plugin, which allows adding sliders to your posts/pages and to custom location. It uses large number of transition effects and supports various types of layers.
|
7 |
-
* Version: 1.0.
|
8 |
* Author: WebDorado
|
9 |
* Author URI: https://web-dorado.com/
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -27,6 +27,9 @@ function wds_options_panel() {
|
|
27 |
add_submenu_page('sliders_wds', 'Licensing', 'Licensing', 'manage_options', 'licensing_wds', 'wds_licensing');
|
28 |
add_submenu_page('sliders_wds', 'Featured Plugins', 'Featured Plugins', 'manage_options', 'featured_plugins_wds', 'wds_featured');
|
29 |
add_submenu_page('sliders_wds', 'Featured Themes', 'Featured Themes', 'manage_options', 'featured_themes_wds', 'wds_featured_themes');
|
|
|
|
|
|
|
30 |
$uninstall_page = add_submenu_page('sliders_wds', 'Uninstall', 'Uninstall', 'manage_options', 'uninstall_wds', 'wd_sliders');
|
31 |
add_action('admin_print_styles-' . $uninstall_page, 'wds_styles');
|
32 |
add_action('admin_print_scripts-' . $uninstall_page, 'wds_scripts');
|
@@ -96,6 +99,21 @@ function wds_featured_themes() {
|
|
96 |
spider_featured_themes();
|
97 |
}
|
98 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
function wds_frontend() {
|
100 |
require_once(WD_S_DIR . '/framework/WDW_S_Library.php');
|
101 |
$page = WDW_S_Library::get('action');
|
@@ -364,7 +382,7 @@ register_activation_hook(__FILE__, 'wds_activate');
|
|
364 |
|
365 |
function wds_install() {
|
366 |
$version = get_option("wds_version");
|
367 |
-
$new_version = '1.0.
|
368 |
if ($version && version_compare($version, $new_version, '<')) {
|
369 |
require_once WD_S_DIR . "/sliders-update.php";
|
370 |
wds_update($version);
|
4 |
* Plugin Name: Slider WD
|
5 |
* Plugin URI: https://web-dorado.com/products/wordpress-slider-plugin.html
|
6 |
* Description: This is a responsive plugin, which allows adding sliders to your posts/pages and to custom location. It uses large number of transition effects and supports various types of layers.
|
7 |
+
* Version: 1.0.30
|
8 |
* Author: WebDorado
|
9 |
* Author URI: https://web-dorado.com/
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
27 |
add_submenu_page('sliders_wds', 'Licensing', 'Licensing', 'manage_options', 'licensing_wds', 'wds_licensing');
|
28 |
add_submenu_page('sliders_wds', 'Featured Plugins', 'Featured Plugins', 'manage_options', 'featured_plugins_wds', 'wds_featured');
|
29 |
add_submenu_page('sliders_wds', 'Featured Themes', 'Featured Themes', 'manage_options', 'featured_themes_wds', 'wds_featured_themes');
|
30 |
+
|
31 |
+
add_submenu_page('sliders_wds', 'Demo Sliders', 'Demo Sliders', 'manage_options', 'demo_sliders_wds', 'wds_demo_sliders');
|
32 |
+
|
33 |
$uninstall_page = add_submenu_page('sliders_wds', 'Uninstall', 'Uninstall', 'manage_options', 'uninstall_wds', 'wd_sliders');
|
34 |
add_action('admin_print_styles-' . $uninstall_page, 'wds_styles');
|
35 |
add_action('admin_print_scripts-' . $uninstall_page, 'wds_scripts');
|
99 |
spider_featured_themes();
|
100 |
}
|
101 |
|
102 |
+
function wds_demo_sliders() {
|
103 |
+
if (function_exists('current_user_can')) {
|
104 |
+
if (!current_user_can('manage_options')) {
|
105 |
+
die('Access Denied');
|
106 |
+
}
|
107 |
+
}
|
108 |
+
else {
|
109 |
+
die('Access Denied');
|
110 |
+
}
|
111 |
+
require_once(WD_S_DIR . '/demo_sliders/demo_sliders.php');
|
112 |
+
wp_register_style('wds_demo_sliders', WD_S_URL . '/demo_sliders/style.css', array(), get_option("wds_version"));
|
113 |
+
wp_print_styles('wds_demo_sliders');
|
114 |
+
spider_demo_sliders();
|
115 |
+
}
|
116 |
+
|
117 |
function wds_frontend() {
|
118 |
require_once(WD_S_DIR . '/framework/WDW_S_Library.php');
|
119 |
$page = WDW_S_Library::get('action');
|
382 |
|
383 |
function wds_install() {
|
384 |
$version = get_option("wds_version");
|
385 |
+
$new_version = '1.0.30';
|
386 |
if ($version && version_compare($version, $new_version, '<')) {
|
387 |
require_once WD_S_DIR . "/sliders-update.php";
|
388 |
wds_update($version);
|