Version Description
Release Date - 2020-08-17
- [Bugfix] Incompatibility between jQuery qTip and the jQuery version included on WordPress 5.5
- Tested with WP 5.5 Plugin updated and supported.
Download this release
Release Info
Developer | IntellyWP |
Plugin | Inline Related Posts |
Version | 2.2.7 |
Comparing to | |
See all releases |
Code changes from version 2.2.6 to 2.2.7
- assets/js/common.js +13 -1
- index.php +2 -2
- readme.txt +8 -2
assets/js/common.js
CHANGED
@@ -146,7 +146,19 @@ jQuery(function() {
|
|
146 |
}
|
147 |
});
|
148 |
}
|
|
|
149 |
if(jQuery('.irp-help').qtip) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
jQuery('.irp-help').qtip({
|
151 |
position: {
|
152 |
corner: {
|
@@ -171,4 +183,4 @@ jQuery(function() {
|
|
171 |
}
|
172 |
});
|
173 |
}
|
174 |
-
});
|
146 |
}
|
147 |
});
|
148 |
}
|
149 |
+
|
150 |
if(jQuery('.irp-help').qtip) {
|
151 |
+
|
152 |
+
jQuery.browser = {};
|
153 |
+
(function () {
|
154 |
+
jQuery.browser.msie = false;
|
155 |
+
jQuery.browser.version = 0;
|
156 |
+
if (navigator.userAgent.match(/MSIE ([0-9]+)\./)) {
|
157 |
+
jQuery.browser.msie = true;
|
158 |
+
jQuery.browser.version = RegExp.$1;
|
159 |
+
}
|
160 |
+
})();
|
161 |
+
|
162 |
jQuery('.irp-help').qtip({
|
163 |
position: {
|
164 |
corner: {
|
183 |
}
|
184 |
});
|
185 |
}
|
186 |
+
});
|
index.php
CHANGED
@@ -6,13 +6,13 @@ Description: Finally the plugin to insert INLINE related posts.
|
|
6 |
Author: IntellyWP
|
7 |
Author URI: http://intellywp.com/
|
8 |
Email: support@intellywp.com
|
9 |
-
Version: 2.2.
|
10 |
*/
|
11 |
define('IRP_PLUGIN_PREFIX', 'IRP_');
|
12 |
define('IRP_PLUGIN_FILE',__FILE__);
|
13 |
define('IRP_PLUGIN_SLUG', 'intelly-related-posts');
|
14 |
define('IRP_PLUGIN_NAME', 'Inline Related Posts');
|
15 |
-
define('IRP_PLUGIN_VERSION', '2.2.
|
16 |
define('IRP_PLUGIN_AUTHOR', 'IntellyWP');
|
17 |
define('IRP_PLUGIN_ROOT', dirname(__FILE__).'/');
|
18 |
define('IRP_PLUGIN_IMAGES', plugins_url( 'assets/images/', __FILE__ ));
|
6 |
Author: IntellyWP
|
7 |
Author URI: http://intellywp.com/
|
8 |
Email: support@intellywp.com
|
9 |
+
Version: 2.2.7
|
10 |
*/
|
11 |
define('IRP_PLUGIN_PREFIX', 'IRP_');
|
12 |
define('IRP_PLUGIN_FILE',__FILE__);
|
13 |
define('IRP_PLUGIN_SLUG', 'intelly-related-posts');
|
14 |
define('IRP_PLUGIN_NAME', 'Inline Related Posts');
|
15 |
+
define('IRP_PLUGIN_VERSION', '2.2.7');
|
16 |
define('IRP_PLUGIN_AUTHOR', 'IntellyWP');
|
17 |
define('IRP_PLUGIN_ROOT', dirname(__FILE__).'/');
|
18 |
define('IRP_PLUGIN_IMAGES', plugins_url( 'assets/images/', __FILE__ ));
|
readme.txt
CHANGED
@@ -3,9 +3,9 @@ Contributors: IntellyWP
|
|
3 |
Donate link: http://intellywp.com/intelly-related-posts/
|
4 |
Tags: related post,related posts,inline related posts, inside related posts, suggestions, similar post, similar posts, related,contextual, relations, seo, bounce rate, internal links, similarity, related content, inline related post, Zemanta, inline, Related Links, Contextual Related Posts, YARPP recommendation engine, YARPP
|
5 |
Requires at least: 2.7
|
6 |
-
Tested up to: 5.
|
7 |
|
8 |
-
Inline Related Posts AUTOMATICALLY inserts related posts INSIDE your content, capturing immediately the reader's attention.
|
9 |
|
10 |
== Description ==
|
11 |
|
@@ -86,6 +86,12 @@ Absolutely Not! Inline Related Posts is built with lightweight code so you won
|
|
86 |
|
87 |
== Changelog ==
|
88 |
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
= 2.2.6 =
|
90 |
*Release Date - 2020-08-06*
|
91 |
|
3 |
Donate link: http://intellywp.com/intelly-related-posts/
|
4 |
Tags: related post,related posts,inline related posts, inside related posts, suggestions, similar post, similar posts, related,contextual, relations, seo, bounce rate, internal links, similarity, related content, inline related post, Zemanta, inline, Related Links, Contextual Related Posts, YARPP recommendation engine, YARPP
|
5 |
Requires at least: 2.7
|
6 |
+
Tested up to: 5.5
|
7 |
|
8 |
+
Inline Related Posts AUTOMATICALLY inserts related posts INSIDE your content, capturing immediately the reader's attention.
|
9 |
|
10 |
== Description ==
|
11 |
|
86 |
|
87 |
== Changelog ==
|
88 |
|
89 |
+
= 2.2.7 =
|
90 |
+
*Release Date - 2020-08-17*
|
91 |
+
|
92 |
+
* [Bugfix] Incompatibility between jQuery qTip and the jQuery version included on WordPress 5.5
|
93 |
+
* Tested with WP 5.5 Plugin updated and supported.
|
94 |
+
|
95 |
= 2.2.6 =
|
96 |
*Release Date - 2020-08-06*
|
97 |
|