Slideshow Gallery - Version 1.7.4.4

Version Description

  • FIX: Multiple slideshows error on a page/post.
Download this release

Release Info

Developer adamluzsi
Plugin Icon 128x128 Slideshow Gallery
Version 1.7.4.4
Comparing to
See all releases

Code changes from version 1.7.4.3 to 1.7.4.4

readme.txt CHANGED
@@ -1,10 +1,10 @@
1
- === Slideshow Gallery ===
2
  Contributors: contrid
3
  Donate link: https://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: 5.8.1
7
- Stable tag: 1.7.4.3
8
 
9
  Feature content in a JavaScript powered slideshow gallery showcase on your WordPress website
10
 
@@ -70,19 +70,19 @@ To hardcode into any PHP file of your WordPress theme, simply use
70
 
71
  You can use any of the following parameters with both the hardcoding and shortcode to customize each slideshow gallery:
72
 
73
- Shortcode Ex 1:
74
 
75
  `[tribulant_slideshow layout="responsive" gallery_id="3" auto="true" navopacity="0" showthumbs="true"]`
76
 
77
- Shortcode Ex 2:
78
 
79
  `[tribulant_slideshow layout="specific" post_id="379" width="600" height="300" auto="false" showinfo="false"]`
80
 
81
- Hardcode Ex 1:
82
 
83
  `<?php slideshow(true, 3, false, array('layout' => "responsive", 'auto' => "true", 'navopacity' => "0", 'showthumbs' => "true")); ?>`
84
 
85
- Hardcode Ex 2:
86
 
87
  `<?php slideshow(true, false, 379, array('layout' => "specific", 'width' => "600", 'height' => "300", 'auto' => "false", 'showinfo' => "false")); ?>`
88
 
@@ -175,6 +175,9 @@ There is an "Images Tester" utility under Slideshow > Settings on the right-hand
175
 
176
  == Changelog ==
177
 
 
 
 
178
  = 1.7.4.3 =
179
  * IMPROVE: Various security fixes.
180
  * IMPROVE: Removed unneeded libraries.
@@ -193,7 +196,7 @@ There is an "Images Tester" utility under Slideshow > Settings on the right-hand
193
  * IMPROVE: Removed update checker.
194
 
195
  = 1.7.2 =
196
- * IMPROVE: Removed serial key management for this free versión.
197
 
198
  = 1.7.1 =
199
  * FIX: Colorbox updates and fixes.
@@ -201,7 +204,7 @@ There is an "Images Tester" utility under Slideshow > Settings on the right-hand
201
  = 1.7 =
202
  * FIX: Error handler.
203
  * FIX: Undefined $_SERVER variable indexes, while executing WP Cron.
204
- * PHP Errors and Notices Fixes for current and future versions of PHP.
205
 
206
  = 1.6.15 =
207
  * FIX: Additional errors related to errorhandler.php.
1
+ === Slideshow Gallery LITE ===
2
  Contributors: contrid
3
  Donate link: https://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: 5.8.2
7
+ Stable tag: 1.7.4.4
8
 
9
  Feature content in a JavaScript powered slideshow gallery showcase on your WordPress website
10
 
70
 
71
  You can use any of the following parameters with both the hardcoding and shortcode to customize each slideshow gallery:
72
 
73
+ Shortcode example 1:
74
 
75
  `[tribulant_slideshow layout="responsive" gallery_id="3" auto="true" navopacity="0" showthumbs="true"]`
76
 
77
+ Shortcode example 2:
78
 
79
  `[tribulant_slideshow layout="specific" post_id="379" width="600" height="300" auto="false" showinfo="false"]`
80
 
81
+ Hardcode example 1:
82
 
83
  `<?php slideshow(true, 3, false, array('layout' => "responsive", 'auto' => "true", 'navopacity' => "0", 'showthumbs' => "true")); ?>`
84
 
85
+ Hardcode example 2:
86
 
87
  `<?php slideshow(true, false, 379, array('layout' => "specific", 'width' => "600", 'height' => "300", 'auto' => "false", 'showinfo' => "false")); ?>`
88
 
175
 
176
  == Changelog ==
177
 
178
+ = 1.7.4.4 =
179
+ * FIX: Multiple slideshows error on a page/post.
180
+
181
  = 1.7.4.3 =
182
  * IMPROVE: Various security fixes.
183
  * IMPROVE: Removed unneeded libraries.
196
  * IMPROVE: Removed update checker.
197
 
198
  = 1.7.2 =
199
+ * IMPROVE: Removed serial key management for this free version. To manage the serial key and get access to all the features, you can purchase and use the paid version of this plugin.
200
 
201
  = 1.7.1 =
202
  * FIX: Colorbox updates and fixes.
204
  = 1.7 =
205
  * FIX: Error handler.
206
  * FIX: Undefined $_SERVER variable indexes, while executing WP Cron.
207
+ * FIX: PHP Errors and Notices fixes for current and future versions of PHP.
208
 
209
  = 1.6.15 =
210
  * FIX: Additional errors related to errorhandler.php.
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.7.4.3';
8
  var $plugin_name;
9
  var $plugin_base;
10
  var $pre = 'Gallery';
@@ -691,15 +691,21 @@ class GalleryPlugin extends GalleryCheckinit {
691
  //$data = maybe_serialize($styles);
692
  //set_transient($key, $data, 999);
693
 
694
- ob_start();
695
- include 'views/default/css-generator-fn.php';
696
- echo '<style id="style-'.esc_attr($styles['unique']).'">';
 
 
 
697
  $function($styles);
698
- echo '</style>';
699
- return ob_get_clean();
 
700
 
701
  }
702
 
 
 
703
  function get_css_url($attr = null, $layout = null) {
704
  $file = (empty($layout) || $layout == "specific") ? 'css' : 'css-responsive';
705
  $css_url = $this -> render_url($file . '.php', 'default');
@@ -1698,4 +1704,4 @@ class GalleryPlugin extends GalleryCheckinit {
1698
  }
1699
  }
1700
 
1701
- ?>
4
 
5
  class GalleryPlugin extends GalleryCheckinit {
6
 
7
+ var $version = '1.7.4.4';
8
  var $plugin_name;
9
  var $plugin_base;
10
  var $pre = 'Gallery';
691
  //$data = maybe_serialize($styles);
692
  //set_transient($key, $data, 999);
693
 
694
+ if (!function_exists($function)) {
695
+ include 'views/default/css-generator-fn.php';
696
+ }
697
+ $output = '';
698
+ $output .= '<style id="style-'.esc_attr($styles['unique']).'">';
699
+ ob_start();
700
  $function($styles);
701
+ $output .= ob_get_clean();
702
+ $output .= '</style>';
703
+ return $output;
704
 
705
  }
706
 
707
+
708
+
709
  function get_css_url($attr = null, $layout = null) {
710
  $file = (empty($layout) || $layout == "specific") ? 'css' : 'css-responsive';
711
  $css_url = $this -> render_url($file . '.php', 'default');
1704
  }
1705
  }
1706
 
1707
+ ?>
slideshow-gallery.php CHANGED
@@ -5,8 +5,8 @@ Plugin Name: Slideshow Gallery
5
  Plugin URI: https://tribulant.com/plugins/view/13/wordpress-slideshow-gallery
6
  Author: Tribulant
7
  Author URI: https://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. See the <a href="https://tribulant.com/docs/wordpress-slideshow-gallery/1758/wordpress-slideshow-gallery-plugin/" target="_blank">online documentation</a> for instructions on using and embedding slideshow galleries.
9
- Version: 1.7.4.3
10
  License: GNU General Public License v2 or later
11
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
12
  Tags: slideshow gallery, slideshow, gallery, slider, jquery, bfithumb, galleries, photos, images
5
  Plugin URI: https://tribulant.com/plugins/view/13/wordpress-slideshow-gallery
6
  Author: Tribulant
7
  Author URI: https://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. See the <a href="https://tribulant.com/docs/wordpress-slideshow-gallery/1758/wordpress-slideshow-gallery-plugin/" target="_blank">online documentation</a> for instructions on using and embedding slideshow galleries. Upgrade to the premium version to remove all limitations.
9
+ Version: 1.7.4.4
10
  License: GNU General Public License v2 or later
11
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
12
  Tags: slideshow gallery, slideshow, gallery, slider, jquery, bfithumb, galleries, photos, images