Version Description
Download this release
Release Info
Developer | contrid |
Plugin | Slideshow Gallery |
Version | 1.6.7.1 |
Comparing to | |
See all releases |
Code changes from version 1.6.7 to 1.6.7.1
- css/admin.css +1 -1
- readme.txt +1 -1
- slideshow-gallery-plugin.php +3 -3
- slideshow-gallery.php +2 -6
- views/admin/galleries/save.php +3 -1
- views/admin/metaboxes/settings-plugins.php +2 -2
- views/admin/metaboxes/settings-submit.php +3 -1
- views/admin/settings-submitserial.php +3 -1
- views/admin/slides/save-multiple.php +6 -2
- views/admin/slides/save.php +3 -1
css/admin.css
CHANGED
@@ -93,7 +93,7 @@
|
|
93 |
}
|
94 |
|
95 |
.slideshow .ui-slider-handle {
|
96 |
-
cursor:
|
97 |
background: #333333;
|
98 |
}
|
99 |
|
93 |
}
|
94 |
|
95 |
.slideshow .ui-slider-handle {
|
96 |
+
cursor: ew-resize !important;
|
97 |
background: #333333;
|
98 |
}
|
99 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://tribulant.com/
|
|
4 |
Tags: wordpress plugins, wordpress slideshow gallery, slides, slideshow, image gallery, images, gallery, featured content, content gallery, javascript, javascript slideshow, slideshow gallery
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 4.8
|
7 |
-
Stable tag: 1.6.7
|
8 |
|
9 |
Feature content in a JavaScript powered slideshow gallery showcase on your WordPress website
|
10 |
|
4 |
Tags: wordpress plugins, wordpress slideshow gallery, slides, slideshow, image gallery, images, gallery, featured content, content gallery, javascript, javascript slideshow, slideshow gallery
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 4.8
|
7 |
+
Stable tag: 1.6.7.1
|
8 |
|
9 |
Feature content in a JavaScript powered slideshow gallery showcase on your WordPress website
|
10 |
|
slideshow-gallery-plugin.php
CHANGED
@@ -4,7 +4,7 @@ if (!defined('ABSPATH')) exit; // Exit if accessed directly
|
|
4 |
|
5 |
class GalleryPlugin extends GalleryCheckinit {
|
6 |
|
7 |
-
var $version = '1.6.7';
|
8 |
var $plugin_name;
|
9 |
var $plugin_base;
|
10 |
var $pre = 'Gallery';
|
@@ -302,10 +302,10 @@ class GalleryPlugin extends GalleryCheckinit {
|
|
302 |
$version = "1.5.3";
|
303 |
}
|
304 |
|
305 |
-
if (version_compare($cur_version, "1.6.7") < 0) {
|
306 |
$this -> initialize_options();
|
307 |
|
308 |
-
$version = "1.6.7";
|
309 |
}
|
310 |
|
311 |
//the current version is older.
|
4 |
|
5 |
class GalleryPlugin extends GalleryCheckinit {
|
6 |
|
7 |
+
var $version = '1.6.7.1';
|
8 |
var $plugin_name;
|
9 |
var $plugin_base;
|
10 |
var $pre = 'Gallery';
|
302 |
$version = "1.5.3";
|
303 |
}
|
304 |
|
305 |
+
if (version_compare($cur_version, "1.6.7.1") < 0) {
|
306 |
$this -> initialize_options();
|
307 |
|
308 |
+
$version = "1.6.7.1";
|
309 |
}
|
310 |
|
311 |
//the current version is older.
|
slideshow-gallery.php
CHANGED
@@ -6,7 +6,7 @@ Plugin URI: http://tribulant.com/plugins/view/13/wordpress-slideshow-gallery
|
|
6 |
Author: Tribulant Software
|
7 |
Author URI: http://tribulant.com
|
8 |
Description: Feature content in a JavaScript powered slideshow gallery showcase on your WordPress website. The slideshow is flexible and all aspects can easily be configured. Embedding or hardcoding the slideshow gallery is a breeze. To embed into a post/page, simply insert <code>[tribulant_slideshow]</code> into its content with an optional <code>post_id</code> parameter. To hardcode into any PHP file of your WordPress theme, simply use <code><?php if (function_exists('slideshow')) { slideshow($output = true, $post_id = false, $gallery_id = false, $params = array()); } ?></code>.
|
9 |
-
Version: 1.6.7
|
10 |
License: GNU General Public License v2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
Tags: slideshow gallery, slideshow, gallery, slider, jquery, bfithumb, galleries, photos, images
|
@@ -477,12 +477,8 @@ if (!class_exists('Gallery')) {
|
|
477 |
if (!empty($slides)) {
|
478 |
$imagespath = $this -> get_option('imagespath');
|
479 |
|
480 |
-
foreach ($slides as $skey => $slide) {
|
481 |
$slides[$skey] -> image_path = $this -> Html -> image_path($slide);
|
482 |
-
|
483 |
-
if (!@getimagesize($slides[$skey] -> image_path)) {
|
484 |
-
unset($slides[$skey]);
|
485 |
-
}
|
486 |
}
|
487 |
|
488 |
if ($orderby == "random") { shuffle($slides); }
|
6 |
Author: Tribulant Software
|
7 |
Author URI: http://tribulant.com
|
8 |
Description: Feature content in a JavaScript powered slideshow gallery showcase on your WordPress website. The slideshow is flexible and all aspects can easily be configured. Embedding or hardcoding the slideshow gallery is a breeze. To embed into a post/page, simply insert <code>[tribulant_slideshow]</code> into its content with an optional <code>post_id</code> parameter. To hardcode into any PHP file of your WordPress theme, simply use <code><?php if (function_exists('slideshow')) { slideshow($output = true, $post_id = false, $gallery_id = false, $params = array()); } ?></code>.
|
9 |
+
Version: 1.6.7.1
|
10 |
License: GNU General Public License v2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
Tags: slideshow gallery, slideshow, gallery, slider, jquery, bfithumb, galleries, photos, images
|
477 |
if (!empty($slides)) {
|
478 |
$imagespath = $this -> get_option('imagespath');
|
479 |
|
480 |
+
foreach ($slides as $skey => $slide) {
|
481 |
$slides[$skey] -> image_path = $this -> Html -> image_path($slide);
|
|
|
|
|
|
|
|
|
482 |
}
|
483 |
|
484 |
if ($orderby == "random") { shuffle($slides); }
|
views/admin/galleries/save.php
CHANGED
@@ -51,7 +51,9 @@ $languages = $this -> language_getlanguages();
|
|
51 |
</table>
|
52 |
|
53 |
<p class="submit">
|
54 |
-
<
|
|
|
|
|
55 |
<div class="slideshow_continueediting">
|
56 |
<label><input <?php echo (!empty($_REQUEST['continueediting'])) ? 'checked="checked"' : ''; ?> type="checkbox" name="continueediting" value="1" id="continueediting" /> <?php _e('Continue editing', $this -> plugin_name); ?></label>
|
57 |
</div>
|
51 |
</table>
|
52 |
|
53 |
<p class="submit">
|
54 |
+
<button type="submit" class="button-primary" value="1" name="submit">
|
55 |
+
<i class="fa fa-check fa-fw"></i> <?php _e('Save Gallery', $this -> plugin_name); ?>
|
56 |
+
</button>
|
57 |
<div class="slideshow_continueediting">
|
58 |
<label><input <?php echo (!empty($_REQUEST['continueediting'])) ? 'checked="checked"' : ''; ?> type="checkbox" name="continueediting" value="1" id="continueediting" /> <?php _e('Continue editing', $this -> plugin_name); ?></label>
|
59 |
</div>
|
views/admin/metaboxes/settings-plugins.php
CHANGED
@@ -13,7 +13,7 @@ if (!defined('ABSPATH')) exit; // Exit if accessed directly
|
|
13 |
Get the WordPress Newsletter plugin today. It is a FREE plugin which can be installed by clicking the button below.
|
14 |
</p>
|
15 |
<p>
|
16 |
-
<a class="thickbox button button-primary button-large" href="<?php echo wp_nonce_url(admin_url('plugin-install.php?tab=plugin-information&plugin=newsletters-lite&TB_iframe=true&width=640&height=591')); ?>"
|
17 |
-
<a class="button button-secondary button-large" href="https://wordpress.org/plugins/newsletters-lite/" target="_blank"
|
18 |
</p>
|
19 |
</div>
|
13 |
Get the WordPress Newsletter plugin today. It is a FREE plugin which can be installed by clicking the button below.
|
14 |
</p>
|
15 |
<p>
|
16 |
+
<a class="thickbox button button-primary button-large" href="<?php echo wp_nonce_url(admin_url('plugin-install.php?tab=plugin-information&plugin=newsletters-lite&TB_iframe=true&width=640&height=591')); ?>"><i class="fa fa-check fa-fw"></i> <?php _e('Install Now', $this -> plugin_name); ?></a>
|
17 |
+
<a class="button button-secondary button-large" href="https://wordpress.org/plugins/newsletters-lite/" target="_blank"><i class="fa fa-info-circle"></i> <?php _e('More Info', $this -> plugin_name); ?></a>
|
18 |
</p>
|
19 |
</div>
|
views/admin/metaboxes/settings-submit.php
CHANGED
@@ -24,7 +24,9 @@ $debugging = get_option('tridebugging');
|
|
24 |
</div>
|
25 |
<div id="major-publishing-actions">
|
26 |
<div id="publishing-action">
|
27 |
-
<
|
|
|
|
|
28 |
</div>
|
29 |
<br class="clear" />
|
30 |
</div>
|
24 |
</div>
|
25 |
<div id="major-publishing-actions">
|
26 |
<div id="publishing-action">
|
27 |
+
<button class="button-primary button button-large" type="submit" name="save" value="1">
|
28 |
+
<i class="fa fa-check fa-fw"></i> <?php _e('Save Configuration', $this -> plugin_name); ?>
|
29 |
+
</button>
|
30 |
</div>
|
31 |
<br class="clear" />
|
32 |
</div>
|
views/admin/settings-submitserial.php
CHANGED
@@ -21,7 +21,9 @@
|
|
21 |
</table>
|
22 |
|
23 |
<p class="submit">
|
24 |
-
<
|
|
|
|
|
25 |
</p>
|
26 |
</form>
|
27 |
</div>
|
21 |
</table>
|
22 |
|
23 |
<p class="submit">
|
24 |
+
<button type="submit" class="button button-primary" name="submit" value="1">
|
25 |
+
<i class="fa fa-check fa-fw"></i> <?php _e('Submit Serial Key', $this -> plugin_name); ?>
|
26 |
+
</button>
|
27 |
</p>
|
28 |
</form>
|
29 |
</div>
|
views/admin/slides/save-multiple.php
CHANGED
@@ -26,7 +26,9 @@ if (!defined('ABSPATH')) exit; // Exit if accessed directly
|
|
26 |
<tr>
|
27 |
<th><label for="Slide_mediaupload"><?php _e('Choose Images', $this -> plugin_name); ?></label></th>
|
28 |
<td>
|
29 |
-
<
|
|
|
|
|
30 |
<span class="howto"><?php _e('Upload/choose images from the media gallery. Ctrl/Shift + Click to choose multiple.', $this -> plugin_name); ?></span>
|
31 |
|
32 |
<div id="Slide_mediaslides" style="display:<?php echo (!empty($_POST['Slide']['slides'])) ? 'block' : 'none'; ?>;">
|
@@ -74,7 +76,9 @@ if (!defined('ABSPATH')) exit; // Exit if accessed directly
|
|
74 |
</table>
|
75 |
|
76 |
<p class="submit">
|
77 |
-
<
|
|
|
|
|
78 |
</p>
|
79 |
</form>
|
80 |
</div>
|
26 |
<tr>
|
27 |
<th><label for="Slide_mediaupload"><?php _e('Choose Images', $this -> plugin_name); ?></label></th>
|
28 |
<td>
|
29 |
+
<button class="button button-secondary" type="button" name="Slide_mediaupload" value="1" id="Slide_mediaupload">
|
30 |
+
<i class="fa fa-image fa-fw"></i> <?php _e('Choose Images', $this -> plugin_name); ?>
|
31 |
+
</button>
|
32 |
<span class="howto"><?php _e('Upload/choose images from the media gallery. Ctrl/Shift + Click to choose multiple.', $this -> plugin_name); ?></span>
|
33 |
|
34 |
<div id="Slide_mediaslides" style="display:<?php echo (!empty($_POST['Slide']['slides'])) ? 'block' : 'none'; ?>;">
|
76 |
</table>
|
77 |
|
78 |
<p class="submit">
|
79 |
+
<button type="submit" name="save" value="1" class="button button-primary">
|
80 |
+
<i class="fa fa-check fa-fw"></i> <?php _e('Save Multiple Slides', $this -> plugin_name); ?>
|
81 |
+
</button>
|
82 |
</p>
|
83 |
</form>
|
84 |
</div>
|
views/admin/slides/save.php
CHANGED
@@ -321,7 +321,9 @@ if ($this -> language_do()) {
|
|
321 |
</div>
|
322 |
|
323 |
<p class="submit">
|
324 |
-
<
|
|
|
|
|
325 |
<div class="slideshow_continueediting">
|
326 |
<label><input <?php echo (!empty($_REQUEST['continueediting'])) ? 'checked="checked"' : ''; ?> type="checkbox" name="continueediting" value="1" id="continueediting" /> <?php _e('Continue editing', $this -> plugin_name); ?></label>
|
327 |
</div>
|
321 |
</div>
|
322 |
|
323 |
<p class="submit">
|
324 |
+
<button class="button-primary" type="submit" name="submit" value="1">
|
325 |
+
<i class="fa fa-check fa-fw"></i> <?php _e('Save Slide', $this -> plugin_name); ?>
|
326 |
+
</button>
|
327 |
<div class="slideshow_continueediting">
|
328 |
<label><input <?php echo (!empty($_REQUEST['continueediting'])) ? 'checked="checked"' : ''; ?> type="checkbox" name="continueediting" value="1" id="continueediting" /> <?php _e('Continue editing', $this -> plugin_name); ?></label>
|
329 |
</div>
|