Version Description
- Fix. instagram premium compatibility
Download this release
Release Info
| Developer | quadlayers |
| Plugin | |
| Version | 2.7.1 |
| Comparing to | |
| See all releases | |
Code changes from version 2.7.0 to 2.7.1
- includes/compatibility.php +23 -0
- insta-gallery.php +2 -2
- readme.txt +5 -2
includes/compatibility.php
CHANGED
|
@@ -3,6 +3,29 @@
|
|
| 3 |
include_once(QLIGG_PLUGIN_DIR . 'includes/models/Token.php');
|
| 4 |
include_once(QLIGG_PLUGIN_DIR . 'includes/models/Feed.php');
|
| 5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
class QLIGG_Compatibility {
|
| 7 |
|
| 8 |
protected static $instance;
|
| 3 |
include_once(QLIGG_PLUGIN_DIR . 'includes/models/Token.php');
|
| 4 |
include_once(QLIGG_PLUGIN_DIR . 'includes/models/Feed.php');
|
| 5 |
|
| 6 |
+
if(!class_exists('QLIGG_Settings')) {
|
| 7 |
+
|
| 8 |
+
class QLIGG_Settings {
|
| 9 |
+
|
| 10 |
+
protected static $instance;
|
| 11 |
+
|
| 12 |
+
// fix required header in license tab
|
| 13 |
+
function settings_header() {
|
| 14 |
+
global $submenu;
|
| 15 |
+
include (QLIGG_PLUGIN_DIR . '/includes/view/backend/pages/parts/header.php');
|
| 16 |
+
}
|
| 17 |
+
|
| 18 |
+
public static function instance() {
|
| 19 |
+
if (!isset(self::$instance)) {
|
| 20 |
+
self::$instance = new self();
|
| 21 |
+
}
|
| 22 |
+
return self::$instance;
|
| 23 |
+
}
|
| 24 |
+
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
}
|
| 28 |
+
|
| 29 |
class QLIGG_Compatibility {
|
| 30 |
|
| 31 |
protected static $instance;
|
insta-gallery.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
* Plugin Name: Instagram Feed Gallery
|
| 5 |
* Plugin URI: https://quadlayers.com/portfolio/instagram-gallery/
|
| 6 |
* Description: Display beautifull and responsive galleries on your website from your Instagram feed account.
|
| 7 |
-
* Version: 2.7.
|
| 8 |
* Author: QuadLayers
|
| 9 |
* Author URI: https://quadlayers.com
|
| 10 |
* License: GPL-2.0+
|
|
@@ -19,7 +19,7 @@ if (!defined('QLIGG_PLUGIN_NAME')) {
|
|
| 19 |
define('QLIGG_PLUGIN_NAME', 'Instagram Feed Gallery');
|
| 20 |
}
|
| 21 |
if (!defined('QLIGG_PLUGIN_VERSION')) {
|
| 22 |
-
define('QLIGG_PLUGIN_VERSION', '2.7.
|
| 23 |
}
|
| 24 |
if (!defined('QLIGG_PLUGIN_FILE')) {
|
| 25 |
define('QLIGG_PLUGIN_FILE', __FILE__);
|
| 4 |
* Plugin Name: Instagram Feed Gallery
|
| 5 |
* Plugin URI: https://quadlayers.com/portfolio/instagram-gallery/
|
| 6 |
* Description: Display beautifull and responsive galleries on your website from your Instagram feed account.
|
| 7 |
+
* Version: 2.7.1
|
| 8 |
* Author: QuadLayers
|
| 9 |
* Author URI: https://quadlayers.com
|
| 10 |
* License: GPL-2.0+
|
| 19 |
define('QLIGG_PLUGIN_NAME', 'Instagram Feed Gallery');
|
| 20 |
}
|
| 21 |
if (!defined('QLIGG_PLUGIN_VERSION')) {
|
| 22 |
+
define('QLIGG_PLUGIN_VERSION', '2.7.1');
|
| 23 |
}
|
| 24 |
if (!defined('QLIGG_PLUGIN_FILE')) {
|
| 25 |
define('QLIGG_PLUGIN_FILE', __FILE__);
|
readme.txt
CHANGED
|
@@ -3,8 +3,8 @@ Contributors: quadlayers, instagram
|
|
| 3 |
Donate link: https://quadlayers.com/portfolio/instagram-gallery/
|
| 4 |
Tags: instagram, instagram feed, instagram gallery, instagram photos, instagram widget, instagram pictures, gallery widget, pictures, carousel slider, image gallery, image slider
|
| 5 |
Requires at least: 3.4
|
| 6 |
-
Tested up to: 5.
|
| 7 |
-
Stable tag: 2.7.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -105,6 +105,9 @@ There may be some other plugins(like: fancybox, elementor) which also uses image
|
|
| 105 |
|
| 106 |
== Changelog ==
|
| 107 |
|
|
|
|
|
|
|
|
|
|
| 108 |
= 2.7.0 =
|
| 109 |
* Fix. instagram refactoring
|
| 110 |
|
| 3 |
Donate link: https://quadlayers.com/portfolio/instagram-gallery/
|
| 4 |
Tags: instagram, instagram feed, instagram gallery, instagram photos, instagram widget, instagram pictures, gallery widget, pictures, carousel slider, image gallery, image slider
|
| 5 |
Requires at least: 3.4
|
| 6 |
+
Tested up to: 5.4.0
|
| 7 |
+
Stable tag: 2.7.1
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 105 |
|
| 106 |
== Changelog ==
|
| 107 |
|
| 108 |
+
= 2.7.1 =
|
| 109 |
+
* Fix. instagram premium compatibility
|
| 110 |
+
|
| 111 |
= 2.7.0 =
|
| 112 |
* Fix. instagram refactoring
|
| 113 |
|
