Version Description
Fixed: Lib conflict with photo-gallery
Download this release
Release Info
Developer | webdorado |
Plugin | WD Instagram Feed – Instagram Gallery |
Version | 1.3.9 |
Comparing to | |
See all releases |
Code changes from version 1.3.8 to 1.3.9
- changelog.txt +3 -0
- readme.txt +4 -1
- wd-instagram-feed.php +3 -3
changelog.txt
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
= 1.3.8 =
|
2 |
Changed: Links to docs
|
3 |
Fixed: Compatibility with Elementor
|
1 |
+
= 1.3.9 =
|
2 |
+
Fixed: Lib conflict with photo-gallery
|
3 |
+
|
4 |
= 1.3.8 =
|
5 |
Changed: Links to docs
|
6 |
Fixed: Compatibility with Elementor
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: custom instagram feed, feed, instagram, hashtag, Instagram feed, instagram
|
|
4 |
Requires at least: 3.9
|
5 |
Requires PHP: 5.2
|
6 |
Tested up to: 4.9
|
7 |
-
Stable tag: 1.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -502,6 +502,9 @@ Please make sure you don't have any important information before you proceed.
|
|
502 |
|
503 |
== Changelog ==
|
504 |
|
|
|
|
|
|
|
505 |
= 1.3.8 =
|
506 |
Changed: Links to docs
|
507 |
Fixed: Compatibility with Elementor
|
4 |
Requires at least: 3.9
|
5 |
Requires PHP: 5.2
|
6 |
Tested up to: 4.9
|
7 |
+
Stable tag: 1.3.9
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
502 |
|
503 |
== Changelog ==
|
504 |
|
505 |
+
= 1.3.9 =
|
506 |
+
Fixed: Lib conflict with photo-gallery
|
507 |
+
|
508 |
= 1.3.8 =
|
509 |
Changed: Links to docs
|
510 |
Fixed: Compatibility with Elementor
|
wd-instagram-feed.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Instagram Feed by 10Web
|
4 |
Plugin URI: https://10web.io/plugins/wordpress-instagram-feed/
|
5 |
Description: Instagram Feed by 10Web is a user-friendly tool for displaying user or hashtag-based feeds on your website. You can create feeds with one of the available layouts. It allows displaying image metadata, open up images in lightbox, download them and even share in social networking websites.
|
6 |
-
Version: 1.3.
|
7 |
Author: 10Web
|
8 |
Author URI: https://10Web.io
|
9 |
License: GPLv2 or later
|
@@ -20,7 +20,7 @@ define("WDI_META", "_".WDI_VAR."_meta");
|
|
20 |
//define("wdi",'wdi');
|
21 |
define('WDI_FEED_TABLE','wdi_feeds');
|
22 |
define('WDI_THEME_TABLE','wdi_themes');
|
23 |
-
define('WDI_VERSION','1.3.
|
24 |
define('WDI_IS_PRO','false');
|
25 |
$wdi_minify = ((isset($_GET['wdi_no_minify']) && $_GET['wdi_no_minify'] == "true") ? false : true);
|
26 |
define('WDI_MINIFY', $wdi_minify);
|
@@ -759,7 +759,7 @@ function wdi_wd_lib_init(){
|
|
759 |
|
760 |
if(!isset($_REQUEST['ajax']) && is_admin()){
|
761 |
|
762 |
-
if( !class_exists("
|
763 |
require_once(WDI_DIR . '/wd/start.php');
|
764 |
}
|
765 |
global $wdi_wd_plugin_options;
|
3 |
Plugin Name: Instagram Feed by 10Web
|
4 |
Plugin URI: https://10web.io/plugins/wordpress-instagram-feed/
|
5 |
Description: Instagram Feed by 10Web is a user-friendly tool for displaying user or hashtag-based feeds on your website. You can create feeds with one of the available layouts. It allows displaying image metadata, open up images in lightbox, download them and even share in social networking websites.
|
6 |
+
Version: 1.3.9
|
7 |
Author: 10Web
|
8 |
Author URI: https://10Web.io
|
9 |
License: GPLv2 or later
|
20 |
//define("wdi",'wdi');
|
21 |
define('WDI_FEED_TABLE','wdi_feeds');
|
22 |
define('WDI_THEME_TABLE','wdi_themes');
|
23 |
+
define('WDI_VERSION','1.3.9');
|
24 |
define('WDI_IS_PRO','false');
|
25 |
$wdi_minify = ((isset($_GET['wdi_no_minify']) && $_GET['wdi_no_minify'] == "true") ? false : true);
|
26 |
define('WDI_MINIFY', $wdi_minify);
|
759 |
|
760 |
if(!isset($_REQUEST['ajax']) && is_admin()){
|
761 |
|
762 |
+
if( !class_exists("TenWebLib") ){
|
763 |
require_once(WDI_DIR . '/wd/start.php');
|
764 |
}
|
765 |
global $wdi_wd_plugin_options;
|