Version Description
Download this release
Release Info
Developer | codeinwp |
Plugin | Slider by Nivo – Responsive WordPress Image Slider |
Version | 1.0.5 |
Comparing to | |
See all releases |
Code changes from version 1.0.1 to 1.0.5
- CHANGELOG.md +9 -2
- assets/css/admin.css +4 -0
- assets/js/tinymce.js +3 -3
- changelog.txt +0 -7
- includes/core/includes/admin-edit.php +1 -1
- includes/core/includes/core.php +64 -0
- includes/core/plugin.php +2 -2
- includes/plugin.php +8 -8
- nivo-slider-lite.php +8 -8
- readme.txt +19 -12
CHANGELOG.md
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
0 |
-
|
|
|
|
|
|
|
1 |
-
|
1 |
+
|
2 |
+
|
3 |
+
|
4 |
+
|
5 |
+
|
6 |
+
|
7 |
+
|
8 |
+
|
9 |
+
|
assets/css/admin.css
CHANGED
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
1 |
#nivoslider_settings_box .dev7-pro-feature {
|
2 |
display: block;
|
3 |
font-size: 13px;
|
1 |
+
/*
|
2 |
+
* Version: 1.0.5
|
3 |
+
*/
|
4 |
+
|
5 |
#nivoslider_settings_box .dev7-pro-feature {
|
6 |
display: block;
|
7 |
font-size: 13px;
|
assets/js/tinymce.js
CHANGED
@@ -51,9 +51,9 @@
|
|
51 |
getInfo : function() {
|
52 |
return {
|
53 |
longname : 'Nivo Slider Shortcode',
|
54 |
-
author : '
|
55 |
-
authorurl : '
|
56 |
-
infourl : '
|
57 |
version : '1.0'
|
58 |
};
|
59 |
}
|
51 |
getInfo : function() {
|
52 |
return {
|
53 |
longname : 'Nivo Slider Shortcode',
|
54 |
+
author : 'ThemeIsle',
|
55 |
+
authorurl : 'https://themeisle.com',
|
56 |
+
infourl : 'https://themeisle.com/plugins/nivo-slider',
|
57 |
version : '1.0'
|
58 |
};
|
59 |
}
|
changelog.txt
DELETED
@@ -1,7 +0,0 @@
|
|
1 |
-
*** Nivo Slider Lite WordPress Plugin Changelog ***
|
2 |
-
|
3 |
-
2016.09.02 - version 1.0.1
|
4 |
-
* Various small bug fixes
|
5 |
-
|
6 |
-
2015.09.15 - version 1.0.0
|
7 |
-
* Initial release
|
|
|
|
|
|
|
|
|
|
|
|
|
|
includes/core/includes/admin-edit.php
CHANGED
@@ -123,7 +123,7 @@ class Dev7_Core_Admin_Edit extends Dev7_Core {
|
|
123 |
return $this->labels->documentation;
|
124 |
}
|
125 |
|
126 |
-
return 'http://docs.
|
127 |
}
|
128 |
|
129 |
/**
|
123 |
return $this->labels->documentation;
|
124 |
}
|
125 |
|
126 |
+
return 'http://docs.themeisle.com';
|
127 |
}
|
128 |
|
129 |
/**
|
includes/core/includes/core.php
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Dev7studios Core
|
4 |
+
*
|
5 |
+
* @package Plugin Core
|
6 |
+
* @subpackage Core
|
7 |
+
* @copyright Copyright (c) 2014, Dev7studios
|
8 |
+
* @license http://opensource.org/licenses/GPL-3.0 GNU Public License
|
9 |
+
* @since 2.2
|
10 |
+
*/
|
11 |
+
|
12 |
+
// Exit if accessed directly
|
13 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
14 |
+
exit;
|
15 |
+
}
|
16 |
+
|
17 |
+
/**
|
18 |
+
* Main Core Class
|
19 |
+
*
|
20 |
+
* @since 2.4.9
|
21 |
+
*/
|
22 |
+
abstract class Dev7_Core {
|
23 |
+
|
24 |
+
/**
|
25 |
+
* All of the specific plugin data
|
26 |
+
*
|
27 |
+
* @var object
|
28 |
+
* @access protected
|
29 |
+
* @since 2.2
|
30 |
+
*/
|
31 |
+
protected $labels;
|
32 |
+
|
33 |
+
/**
|
34 |
+
* Is this plugin a "lite" plugin
|
35 |
+
*
|
36 |
+
* @var bool
|
37 |
+
* @access protected
|
38 |
+
* @since 2.4.8
|
39 |
+
*/
|
40 |
+
protected $is_lite;
|
41 |
+
|
42 |
+
/**
|
43 |
+
* Main construct
|
44 |
+
*
|
45 |
+
* @since 2.2
|
46 |
+
*
|
47 |
+
* @param array $labels Specific plugin label data
|
48 |
+
* @param bool $is_lite Is this a "lite" plugin
|
49 |
+
*/
|
50 |
+
public function __construct( $labels, $is_lite = false ) {
|
51 |
+
$this->labels = (object) $labels;
|
52 |
+
$this->is_lite = $is_lite;
|
53 |
+
|
54 |
+
$this->core_init();
|
55 |
+
}
|
56 |
+
|
57 |
+
/**
|
58 |
+
* Use this instead of overriding __construct
|
59 |
+
*/
|
60 |
+
protected function core_init()
|
61 |
+
{
|
62 |
+
//
|
63 |
+
}
|
64 |
+
}
|
includes/core/plugin.php
CHANGED
@@ -82,10 +82,10 @@ abstract class Dev7_Core_Plugin {
|
|
82 |
*/
|
83 |
private function setup_constants() {
|
84 |
if ( ! defined( 'DEV7_SITE_URL' ) ) {
|
85 |
-
define( 'DEV7_SITE_URL', 'https://
|
86 |
}
|
87 |
if ( ! defined( 'DEV7_STORE_URL' ) ) {
|
88 |
-
define( 'DEV7_STORE_URL', 'http://
|
89 |
}
|
90 |
// Core Folder Path
|
91 |
if ( ! defined( 'DEV7_CORE_DIR' ) ) {
|
82 |
*/
|
83 |
private function setup_constants() {
|
84 |
if ( ! defined( 'DEV7_SITE_URL' ) ) {
|
85 |
+
define( 'DEV7_SITE_URL', 'https://themeisle.com' );
|
86 |
}
|
87 |
if ( ! defined( 'DEV7_STORE_URL' ) ) {
|
88 |
+
define( 'DEV7_STORE_URL', 'http://themeisle.com' );
|
89 |
}
|
90 |
// Core Folder Path
|
91 |
if ( ! defined( 'DEV7_CORE_DIR' ) ) {
|
includes/plugin.php
CHANGED
@@ -68,7 +68,7 @@ class Dev7_Nivo_Slider_Lite extends Dev7_Core_Plugin {
|
|
68 |
'type_name' => 'type',
|
69 |
'singular' => __( 'Slider', 'nivo-slider' ),
|
70 |
'plural' => __( 'Sliders', 'nivo-slider' ),
|
71 |
-
'documentation' => 'http://docs.
|
72 |
);
|
73 |
$this->post_type = $this->labels['post_type'];
|
74 |
|
@@ -381,7 +381,7 @@ class Dev7_Nivo_Slider_Lite extends Dev7_Core_Plugin {
|
|
381 |
'default' => 'fixed',
|
382 |
'type' => 'select',
|
383 |
'title' => __( 'Slider Sizing', 'nivo-slider' ),
|
384 |
-
'descp' => '<span class="dev7-pro-feature">' . sprintf( '<strong>%s</strong> %s <a href="%s" target="_blank">%s</a>', __( 'Pro Feature:', 'nivo-slider' ), __( 'Create fully <strong>responsive</strong> sliders.', 'nivo-slider' ), 'https://
|
385 |
'options' => array(
|
386 |
'fixed' => __( 'Fixed Size', 'nivo-slider' ),
|
387 |
),
|
@@ -410,7 +410,7 @@ class Dev7_Nivo_Slider_Lite extends Dev7_Core_Plugin {
|
|
410 |
'default' => 'default',
|
411 |
'type' => 'select',
|
412 |
'title' => __( 'Slider Theme', 'nivo-slider' ),
|
413 |
-
'descp' => '<span class="dev7-pro-feature">' . sprintf( '<strong>%s</strong> %s <a href="%s" target="_blank">%s</a>', __( 'Pro Feature:', 'nivo-slider' ), __( 'Select from our selection of beautiful <strong>pre-built themes</strong> or provide your own.', 'nivo-slider' ), 'https://
|
414 |
'options' => array(
|
415 |
'' => __( 'None', 'nivo-slider' ),
|
416 |
'default' => __( 'Nivo Slider Default Theme', 'nivo-slider' ),
|
@@ -428,7 +428,7 @@ class Dev7_Nivo_Slider_Lite extends Dev7_Core_Plugin {
|
|
428 |
'default' => 'fade',
|
429 |
'type' => 'select',
|
430 |
'title' => __( 'Transition Effect', 'nivo-slider' ),
|
431 |
-
'descp' => '<span class="dev7-pro-feature">' . sprintf( '<strong>%s</strong> %s <a href="%s" target="_blank">%s</a>', __( 'Pro Feature:', 'nivo-slider' ), __( 'Enable all <strong>16 stunning transition effects</strong>.', 'nivo-slider' ), 'https://
|
432 |
'options' => $effects,
|
433 |
);
|
434 |
$settings[] = array(
|
@@ -458,7 +458,7 @@ class Dev7_Nivo_Slider_Lite extends Dev7_Core_Plugin {
|
|
458 |
'default' => 'off',
|
459 |
'type' => 'custom',
|
460 |
'title' => __( 'Enable Thumbnail Navigation', 'nivo-slider' ),
|
461 |
-
'descp' => '<span class="dev7-pro-feature">' . sprintf( '<strong>%s</strong> %s <a href="%s" target="_blank">%s</a>', __( 'Pro Feature:', 'nivo-slider' ), __( 'Enable <strong>thumbnail navigation</strong> and control thumb sizes.', 'nivo-slider' ), 'https://
|
462 |
);
|
463 |
$settings[] = array(
|
464 |
'name' => 'pauseTime',
|
@@ -522,7 +522,7 @@ class Dev7_Nivo_Slider_Lite extends Dev7_Core_Plugin {
|
|
522 |
'default' => 'off',
|
523 |
'type' => 'custom',
|
524 |
'title' => __( 'Random Start Slide', 'nivo-slider' ),
|
525 |
-
'descp' => '<span class="dev7-pro-feature">' . sprintf( '<strong>%s</strong> %s <a href="%s" target="_blank">%s</a>', __( 'Pro Feature:', 'nivo-slider' ), __( 'Enable <strong>random start slide</strong>.', 'nivo-slider' ), 'https://
|
526 |
);
|
527 |
|
528 |
return $settings;
|
@@ -622,7 +622,7 @@ class Dev7_Nivo_Slider_Lite extends Dev7_Core_Plugin {
|
|
622 |
* Override the type manual description
|
623 |
*/
|
624 |
public function manual_type_description() {
|
625 |
-
echo '<span class="dev7-pro-feature">' . sprintf( '<strong>%s</strong> %s <a href="%s" target="_blank">%s</a>', __( 'Pro Feature:', 'nivo-slider' ), __( 'Automatically populate sliders from <strong>posts galleries</strong>, <strong>posts in categories</strong> and <strong>sticky posts</strong>.', 'nivo-slider' ), 'https://
|
626 |
}
|
627 |
|
628 |
/**
|
@@ -655,7 +655,7 @@ class Dev7_Nivo_Slider_Lite extends Dev7_Core_Plugin {
|
|
655 |
echo '<li>' . __( 'Media Manager Plus integration', 'nivo-slider' ) . '</li>';
|
656 |
echo '<li>' . __( 'Access to our support Help Desk', 'nivo-slider' ) . '</li>';
|
657 |
echo '</ul>';
|
658 |
-
echo '<a href="https://
|
659 |
}
|
660 |
|
661 |
/**
|
68 |
'type_name' => 'type',
|
69 |
'singular' => __( 'Slider', 'nivo-slider' ),
|
70 |
'plural' => __( 'Sliders', 'nivo-slider' ),
|
71 |
+
'documentation' => 'http://docs.themeisle.com/'
|
72 |
);
|
73 |
$this->post_type = $this->labels['post_type'];
|
74 |
|
381 |
'default' => 'fixed',
|
382 |
'type' => 'select',
|
383 |
'title' => __( 'Slider Sizing', 'nivo-slider' ),
|
384 |
+
'descp' => '<span class="dev7-pro-feature">' . sprintf( '<strong>%s</strong> %s <a href="%s" target="_blank">%s</a>', __( 'Pro Feature:', 'nivo-slider' ), __( 'Create fully <strong>responsive</strong> sliders.', 'nivo-slider' ), 'https://themeisle.com/plugins/nivo-slider/?utm_source=wp_plugin&utm_medium=upgrade_link&utm_content=size_setting&utm_campaign=' . $this->post_type . '_lite_plugin', __( 'Upgrade to Pro', 'nivo-slider' ) ) . '</span>',
|
385 |
'options' => array(
|
386 |
'fixed' => __( 'Fixed Size', 'nivo-slider' ),
|
387 |
),
|
410 |
'default' => 'default',
|
411 |
'type' => 'select',
|
412 |
'title' => __( 'Slider Theme', 'nivo-slider' ),
|
413 |
+
'descp' => '<span class="dev7-pro-feature">' . sprintf( '<strong>%s</strong> %s <a href="%s" target="_blank">%s</a>', __( 'Pro Feature:', 'nivo-slider' ), __( 'Select from our selection of beautiful <strong>pre-built themes</strong> or provide your own.', 'nivo-slider' ), 'https://themeisle.com/plugins/nivo-slider/?utm_source=wp_plugin&utm_medium=upgrade_link&utm_content=themes_setting&utm_campaign=' . $this->post_type . '_lite_plugin', __( 'Upgrade to Pro', 'nivo-slider' ) ) . '</span>',
|
414 |
'options' => array(
|
415 |
'' => __( 'None', 'nivo-slider' ),
|
416 |
'default' => __( 'Nivo Slider Default Theme', 'nivo-slider' ),
|
428 |
'default' => 'fade',
|
429 |
'type' => 'select',
|
430 |
'title' => __( 'Transition Effect', 'nivo-slider' ),
|
431 |
+
'descp' => '<span class="dev7-pro-feature">' . sprintf( '<strong>%s</strong> %s <a href="%s" target="_blank">%s</a>', __( 'Pro Feature:', 'nivo-slider' ), __( 'Enable all <strong>16 stunning transition effects</strong>.', 'nivo-slider' ), 'https://themeisle.com/plugins/nivo-slider/?utm_source=wp_plugin&utm_medium=upgrade_link&utm_content=transition_setting&utm_campaign=' . $this->post_type . '_lite_plugin', __( 'Upgrade to Pro', 'nivo-slider' ) ) . '</span>',
|
432 |
'options' => $effects,
|
433 |
);
|
434 |
$settings[] = array(
|
458 |
'default' => 'off',
|
459 |
'type' => 'custom',
|
460 |
'title' => __( 'Enable Thumbnail Navigation', 'nivo-slider' ),
|
461 |
+
'descp' => '<span class="dev7-pro-feature">' . sprintf( '<strong>%s</strong> %s <a href="%s" target="_blank">%s</a>', __( 'Pro Feature:', 'nivo-slider' ), __( 'Enable <strong>thumbnail navigation</strong> and control thumb sizes.', 'nivo-slider' ), 'https://themeisle.com/plugins/nivo-slider/?utm_source=wp_plugin&utm_medium=upgrade_link&utm_content=thumbnail_setting&utm_campaign=' . $this->post_type . '_lite_plugin', __( 'Upgrade to Pro', 'nivo-slider' ) ) . '</span>',
|
462 |
);
|
463 |
$settings[] = array(
|
464 |
'name' => 'pauseTime',
|
522 |
'default' => 'off',
|
523 |
'type' => 'custom',
|
524 |
'title' => __( 'Random Start Slide', 'nivo-slider' ),
|
525 |
+
'descp' => '<span class="dev7-pro-feature">' . sprintf( '<strong>%s</strong> %s <a href="%s" target="_blank">%s</a>', __( 'Pro Feature:', 'nivo-slider' ), __( 'Enable <strong>random start slide</strong>.', 'nivo-slider' ), 'https://themeisle.com/plugins/nivo-slider/?utm_source=wp_plugin&utm_medium=upgrade_link&utm_content=random_setting&utm_campaign=' . $this->post_type . '_lite_plugin', __( 'Upgrade to Pro', 'nivo-slider' ) ) . '</span>',
|
526 |
);
|
527 |
|
528 |
return $settings;
|
622 |
* Override the type manual description
|
623 |
*/
|
624 |
public function manual_type_description() {
|
625 |
+
echo '<span class="dev7-pro-feature">' . sprintf( '<strong>%s</strong> %s <a href="%s" target="_blank">%s</a>', __( 'Pro Feature:', 'nivo-slider' ), __( 'Automatically populate sliders from <strong>posts galleries</strong>, <strong>posts in categories</strong> and <strong>sticky posts</strong>.', 'nivo-slider' ), 'https://themeisle.com/plugins/nivo-slider/?utm_source=wp_plugin&utm_medium=upgrade_link&utm_content=type_setting&utm_campaign=' . $this->post_type . '_lite_plugin', __( 'Upgrade to Pro', 'nivo-slider' ) ) . '</span>';
|
626 |
}
|
627 |
|
628 |
/**
|
655 |
echo '<li>' . __( 'Media Manager Plus integration', 'nivo-slider' ) . '</li>';
|
656 |
echo '<li>' . __( 'Access to our support Help Desk', 'nivo-slider' ) . '</li>';
|
657 |
echo '</ul>';
|
658 |
+
echo '<a href="https://themeisle.com/plugins/nivo-slider/?utm_source=wp_plugin&utm_medium=upgrade_link&utm_content=upgrade_metabox&utm_campaign=' . $this->post_type . '_lite_plugin" target="_blank" class="button-primary">' . __( 'Upgrade Now', 'nivo-slider' ) . '</a>';
|
659 |
}
|
660 |
|
661 |
/**
|
nivo-slider-lite.php
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Plugin Name: Nivo Slider Lite
|
4 |
-
* Plugin URI: https://
|
5 |
-
* Description:
|
6 |
-
* Version: 1.0.
|
7 |
-
* Author:
|
8 |
-
* Author URI: https://
|
9 |
* Text Domain: nivo-slider
|
10 |
* Domain Path: languages
|
11 |
**/
|
@@ -26,7 +26,7 @@ class WordPress_Nivo_Slider_Lite {
|
|
26 |
* @var string
|
27 |
* @access private
|
28 |
*/
|
29 |
-
private $version = '1.0.
|
30 |
|
31 |
public function __construct() {
|
32 |
$this->setup_constants();
|
@@ -80,4 +80,4 @@ class WordPress_Nivo_Slider_Lite {
|
|
80 |
}
|
81 |
|
82 |
// Let's go!
|
83 |
-
$WordPress_Nivo_Slider_Lite = new WordPress_Nivo_Slider_Lite();
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Plugin Name: Responsive WordPress Slider - Nivo Slider Lite
|
4 |
+
* Plugin URI: https://themeisle.com/plugins/nivo-slider-lite
|
5 |
+
* Description: Most Popular And Easiest to Use WordPress Slider Plugin.
|
6 |
+
* Version: 1.0.5
|
7 |
+
* Author: ThemeIsle
|
8 |
+
* Author URI: https://themeisle.com/
|
9 |
* Text Domain: nivo-slider
|
10 |
* Domain Path: languages
|
11 |
**/
|
26 |
* @var string
|
27 |
* @access private
|
28 |
*/
|
29 |
+
private $version = '1.0.5';
|
30 |
|
31 |
public function __construct() {
|
32 |
$this->setup_constants();
|
80 |
}
|
81 |
|
82 |
// Let's go!
|
83 |
+
$WordPress_Nivo_Slider_Lite = new WordPress_Nivo_Slider_Lite();
|
readme.txt
CHANGED
@@ -1,19 +1,22 @@
|
|
1 |
=== Nivo Slider Lite ===
|
2 |
-
Contributors:
|
3 |
-
Tags: image, slider, nivo
|
4 |
Requires at least: 3.0
|
5 |
-
Tested up to: 4.
|
6 |
-
Stable tag:
|
7 |
License: GPLv3
|
8 |
|
9 |
-
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
The Nivo Slider is the worlds most popular image slider plugin, downloaded over **3,000,000** times since it's inception. This
|
14 |
-
is the "Lite" version of the official [Nivo Slider WordPress plugin](https://
|
15 |
which comes with email support and more features.
|
16 |
|
|
|
|
|
|
|
17 |
**Get more awesome features by upgrading to the full plugin:**
|
18 |
|
19 |
* Create sliders from **Galleries, Categories and Sticky Posts**
|
@@ -23,10 +26,8 @@ which comes with email support and more features.
|
|
23 |
* **Thumbnail** navigation
|
24 |
* Random start slide
|
25 |
* Nivo Slider **Widget**
|
26 |
-
* [Media Manager Plus](https://dev7studios.com/media-manager-plus/?utm_source=wordpress.org&utm_medium=web&utm_content=mmp_link&utm_campaign=nivoslider_lite_plugin) integration
|
27 |
-
* Access to our support [Help Desk](https://dev7studios.com/support/help-desk/?utm_source=wordpress.org&utm_medium=web&utm_content=support_link&utm_campaign=nivoslider_lite_plugin)
|
28 |
|
29 |
-
**[Click here to purchase the full plugin](https://
|
30 |
|
31 |
== Installation ==
|
32 |
|
@@ -37,8 +38,8 @@ which comes with email support and more features.
|
|
37 |
|
38 |
= I'd like access to more features and support. How can I get them? =
|
39 |
|
40 |
-
You can get access to more features and support by visiting the
|
41 |
-
[purchasing a license](https://
|
42 |
Purchasing a license gets you access to the full version of the Nivo Slider WordPress plugin, automatic updates and support.
|
43 |
|
44 |
== Screenshots ==
|
@@ -50,8 +51,14 @@ Purchasing a license gets you access to the full version of the Nivo Slider Word
|
|
50 |
|
51 |
== Changelog ==
|
52 |
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
= 1.0.1 =
|
54 |
* Various small bug fixes
|
55 |
|
56 |
= 1.0.0 =
|
57 |
-
* Initial release
|
1 |
=== Nivo Slider Lite ===
|
2 |
+
Contributors: themeisle, codeinwp
|
3 |
+
Tags: image, slider, nivo,slider plugin, slideshow, slideshow plugin, template tag, wordpress gallery, wordpress image slider, wordpress photo gallery, wordpress picture gallery, wordpress picture slider, wordpress responsive slider, wordpress slider, wordpress slider plugin, wordpress slideshow, wp slider
|
4 |
Requires at least: 3.0
|
5 |
+
Tested up to: 4.7
|
6 |
+
Stable tag: trunk
|
7 |
License: GPLv3
|
8 |
|
9 |
+
Most Popular And Easiest to Use WordPress Slider Plugin.
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
The Nivo Slider is the worlds most popular image slider plugin, downloaded over **3,000,000** times since it's inception. This
|
14 |
+
is the "Lite" version of the official [Nivo Slider WordPress plugin](https://themeisle.com/plugins/nivo-slider?utm_source=wordpress.org&utm_medium=web&utm_content=description_link&utm_campaign=nivoslider_lite_plugin)
|
15 |
which comes with email support and more features.
|
16 |
|
17 |
+
Why Choose Nivo Slider?
|
18 |
+
Nivo Slider is the best choice for a WordPress slider plugin because it is fast, intuitive and super easy to use. Is not the most feature-rich plugin on the market, but if you need just a responsive slider that works, check it out!
|
19 |
+
|
20 |
**Get more awesome features by upgrading to the full plugin:**
|
21 |
|
22 |
* Create sliders from **Galleries, Categories and Sticky Posts**
|
26 |
* **Thumbnail** navigation
|
27 |
* Random start slide
|
28 |
* Nivo Slider **Widget**
|
|
|
|
|
29 |
|
30 |
+
**[Click here to purchase the full plugin](https://themeisle.com/plugins/nivo-slider?utm_source=wordpress.org&utm_medium=web&utm_content=purchase_link&utm_campaign=nivoslider_lite_plugin)**
|
31 |
|
32 |
== Installation ==
|
33 |
|
38 |
|
39 |
= I'd like access to more features and support. How can I get them? =
|
40 |
|
41 |
+
You can get access to more features and support by visiting the Themeisle website and
|
42 |
+
[purchasing a license](https://themeisle.com/plugins/nivo-slider?utm_source=wordpress.org&utm_medium=web&utm_content=faq_link&utm_campaign=nivoslider_lite_plugin).
|
43 |
Purchasing a license gets you access to the full version of the Nivo Slider WordPress plugin, automatic updates and support.
|
44 |
|
45 |
== Screenshots ==
|
51 |
|
52 |
== Changelog ==
|
53 |
|
54 |
+
= 1.0.3 =
|
55 |
+
* Added themeisle as author
|
56 |
+
|
57 |
+
= 1.0.2 =
|
58 |
+
* Fixed fatal error
|
59 |
+
|
60 |
= 1.0.1 =
|
61 |
* Various small bug fixes
|
62 |
|
63 |
= 1.0.0 =
|
64 |
+
* Initial release
|