Version Description
- Fixed - Call to undefined function parse_blocks
Download this release
Release Info
Developer | vinod dalvi |
Plugin | Ivory Search – WordPress Search Plugin |
Version | 5.4.5 |
Comparing to | |
See all releases |
Code changes from version 5.4.4 to 5.4.5
- add-search-to-menu.php +2 -2
- changelog.txt +10 -0
- includes/class-is-index-builder.php +2 -2
- readme.txt +4 -11
add-search-to-menu.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: Ivory Search
|
5 |
* Plugin URI: https://ivorysearch.com
|
6 |
* Description: The WordPress Search plugin that includes Search Form Customizer, WooCommerce Search, Image Search, Search Shortcode, AJAX Search & Live Search support!
|
7 |
-
* Version: 5.4.
|
8 |
* Author: Ivory Search
|
9 |
* Author URI: https://ivorysearch.com/
|
10 |
* License: GPL2+
|
@@ -110,7 +110,7 @@ final class Ivory_Search
|
|
110 |
public function define_constants()
|
111 |
{
|
112 |
if ( !defined( 'IS_VERSION' ) ) {
|
113 |
-
define( 'IS_VERSION', '5.4.
|
114 |
}
|
115 |
if ( !defined( 'IS_PLUGIN_FILE' ) ) {
|
116 |
define( 'IS_PLUGIN_FILE', __FILE__ );
|
4 |
* Plugin Name: Ivory Search
|
5 |
* Plugin URI: https://ivorysearch.com
|
6 |
* Description: The WordPress Search plugin that includes Search Form Customizer, WooCommerce Search, Image Search, Search Shortcode, AJAX Search & Live Search support!
|
7 |
+
* Version: 5.4.5
|
8 |
* Author: Ivory Search
|
9 |
* Author URI: https://ivorysearch.com/
|
10 |
* License: GPL2+
|
110 |
public function define_constants()
|
111 |
{
|
112 |
if ( !defined( 'IS_VERSION' ) ) {
|
113 |
+
define( 'IS_VERSION', '5.4.5' );
|
114 |
}
|
115 |
if ( !defined( 'IS_PLUGIN_FILE' ) ) {
|
116 |
define( 'IS_PLUGIN_FILE', __FILE__ );
|
changelog.txt
CHANGED
@@ -1,3 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
= 4.7.1 =
|
2 |
* Improved - Code quality to adhere to WordPress development standards and improve safety/security.
|
3 |
|
1 |
+
= 4.8.2 =
|
2 |
+
* Fixed - Plugin template file is-ajax-results.php was not overriding.
|
3 |
+
|
4 |
+
= 4.8.1 =
|
5 |
+
* Fixed - Autocomplete off was not working.
|
6 |
+
|
7 |
+
= 4.8 =
|
8 |
+
* Fixed - Error occurred due to inclusion of non-existent file.
|
9 |
+
* Fixed - Plugin admin options not working.
|
10 |
+
|
11 |
= 4.7.1 =
|
12 |
* Improved - Code quality to adhere to WordPress development standards and improve safety/security.
|
13 |
|
includes/class-is-index-builder.php
CHANGED
@@ -205,8 +205,8 @@ class IS_Index_Builder {
|
|
205 |
$post = $this->post;
|
206 |
$post_type = $post->post_type ? $post->post_type : '';
|
207 |
|
208 |
-
if ( 'revision' == $post_type ) {
|
209 |
-
$parent =
|
210 |
$post_type = $parent->post_type ? $parent->post_type : '';
|
211 |
}
|
212 |
|
205 |
$post = $this->post;
|
206 |
$post_type = $post->post_type ? $post->post_type : '';
|
207 |
|
208 |
+
if ( 'revision' == $post_type && ! empty( $post->post_parent ) ) {
|
209 |
+
$parent = get_post( $post->post_parent );
|
210 |
$post_type = $parent->post_type ? $parent->post_type : '';
|
211 |
}
|
212 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: search, woocommerce search, image search, ajax search, search shortcode, l
|
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 5.9
|
7 |
Requires PHP: 5.2.4
|
8 |
-
Stable tag: 5.4.
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -197,6 +197,9 @@ Yes we do. We try our best to help free users with customisation requests and we
|
|
197 |
|
198 |
== Changelog ==
|
199 |
|
|
|
|
|
|
|
200 |
= 5.4.4 =
|
201 |
* Updated - Freemius SDK
|
202 |
* Fixed - Security fix
|
@@ -236,13 +239,3 @@ Yes we do. We try our best to help free users with customisation requests and we
|
|
236 |
* Added - Faster search with inverted index-based search engine.
|
237 |
* Added - Index and search shortcode contents.
|
238 |
* Added - Index and search TablePress shortcode contents.
|
239 |
-
|
240 |
-
= 4.8.2 =
|
241 |
-
* Fixed - Plugin template file is-ajax-results.php was not overriding.
|
242 |
-
|
243 |
-
= 4.8.1 =
|
244 |
-
* Fixed - Autocomplete off was not working.
|
245 |
-
|
246 |
-
= 4.8 =
|
247 |
-
* Fixed - Error occurred due to inclusion of non-existent file.
|
248 |
-
* Fixed - Plugin admin options not working.
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 5.9
|
7 |
Requires PHP: 5.2.4
|
8 |
+
Stable tag: 5.4.5
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
197 |
|
198 |
== Changelog ==
|
199 |
|
200 |
+
= 5.4.5 =
|
201 |
+
* Fixed - Call to undefined function parse_blocks
|
202 |
+
|
203 |
= 5.4.4 =
|
204 |
* Updated - Freemius SDK
|
205 |
* Fixed - Security fix
|
239 |
* Added - Faster search with inverted index-based search engine.
|
240 |
* Added - Index and search shortcode contents.
|
241 |
* Added - Index and search TablePress shortcode contents.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|