Search & Filter - Version 1.2.15

Version Description

  • Fixed - a PHP 8 warning when using the taxonomy walker class - thanks @jules-colle + @superthin
Download this release

Release Info

Developer codeamp
Plugin Icon 128x128 Search & Filter
Version 1.2.15
Comparing to
See all releases

Code changes from version 1.2.14 to 1.2.15

Files changed (4) hide show
  1. of-admin.php +1 -1
  2. of-taxonomy-walker.php +1 -1
  3. readme.txt +4 -1
  4. search-filter.php +2 -2
of-admin.php CHANGED
@@ -57,7 +57,7 @@
57
  <p><?php echo sprintf( esc_html__( 'This means %s, and %s.', 'search-filter' ), '<strong>' . esc_html( 'significant changes to how you build search forms', 'search-filter' ) . '</strong>', '<strong>' . esc_html( 'more features, filters, flexibility and integration options', 'search-filter' ) . '</strong>' ); ?></p>
58
  <p><?php echo esc_html__( 'This is all part of a huge undertaking, bringing more features to Search & Filter free and pro, while also bringing a new interface and architecture to both editions.', 'search-filter' ); ?></p>
59
  <p><a href="https://searchandfilter.com/search-filter-3-0-free/" target="_blank"><?php echo esc_html__( 'Read the full blog post here.', 'search-filter' ); ?></a></p>
60
- <p><?php echo esc_html__( 'PS - we\'re looking for beta testers.', 'search-filter' ); ?></p>
61
 
62
  </div>
63
  <?php
57
  <p><?php echo sprintf( esc_html__( 'This means %s, and %s.', 'search-filter' ), '<strong>' . esc_html( 'significant changes to how you build search forms', 'search-filter' ) . '</strong>', '<strong>' . esc_html( 'more features, filters, flexibility and integration options', 'search-filter' ) . '</strong>' ); ?></p>
58
  <p><?php echo esc_html__( 'This is all part of a huge undertaking, bringing more features to Search & Filter free and pro, while also bringing a new interface and architecture to both editions.', 'search-filter' ); ?></p>
59
  <p><a href="https://searchandfilter.com/search-filter-3-0-free/" target="_blank"><?php echo esc_html__( 'Read the full blog post here.', 'search-filter' ); ?></a></p>
60
+ <p><?php echo esc_html__( 'PS - ', 'search-filter' ); ?><a href="https://searchandfilter.com/version-3/" target="_blank"><?php echo esc_html__( 'we\'re looking for beta testers.', 'search-filter' ); ?></a></p>
61
 
62
  </div>
63
  <?php
of-taxonomy-walker.php CHANGED
@@ -14,7 +14,7 @@ class Taxonomy_Walker extends Walker_Category {
14
  $this->defaults = $defaults;
15
  }
16
 
17
- function display_element( $element, &$children_elements, $max_depth, $depth=0, $args, &$output ) {
18
 
19
  parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );
20
  }
14
  $this->defaults = $defaults;
15
  }
16
 
17
+ function display_element( $element, &$children_elements, $max_depth, $depth=0, $args = array(), &$output = '' ) {
18
 
19
  parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );
20
  }
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link:
4
  Tags: category, filter, taxonomy, search, wordpress, post type, post date
5
  Requires at least: 3.5
6
  Tested up to: 5.9
7
- Stable tag: 1.2.14
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -34,6 +34,9 @@ The documentation has been updated to include examples almost all configurable o
34
 
35
  == Changelog ==
36
 
 
 
 
37
  = 1.2.14 =
38
  * Admin notice added - Version 3 is coming soon - beta testers wanted + tons of improvements and changes coming - make sure you know what's in store.
39
  * Update docs URLs
4
  Tags: category, filter, taxonomy, search, wordpress, post type, post date
5
  Requires at least: 3.5
6
  Tested up to: 5.9
7
+ Stable tag: 1.2.15
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
34
 
35
  == Changelog ==
36
 
37
+ = 1.2.15 =
38
+ * Fixed - a PHP 8 warning when using the taxonomy walker class - thanks @jules-colle + @superthin
39
+
40
  = 1.2.14 =
41
  * Admin notice added - Version 3 is coming soon - beta testers wanted + tons of improvements and changes coming - make sure you know what's in store.
42
  * Update docs URLs
search-filter.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: https://free.searchandfilter.com/
5
  Description: Search and Filtering system for Pages, Posts, Categories, Tags and Taxonomies
6
  Author: Code Amp
7
  Author URI: https://codeamp.com
8
- Version: 1.2.14
9
  Text Domain: searchandfilter
10
  License: GPLv2
11
  */
@@ -14,7 +14,7 @@ License: GPLv2
14
  * Set up Plugin Globals
15
  */
16
  if (!defined('SEARCHANDFILTER_VERSION_NUM'))
17
- define('SEARCHANDFILTER_VERSION_NUM', '1.2.14');
18
 
19
  if (!defined('SEARCHANDFILTER_THEME_DIR'))
20
  define('SEARCHANDFILTER_THEME_DIR', ABSPATH . 'wp-content/themes/' . get_template());
5
  Description: Search and Filtering system for Pages, Posts, Categories, Tags and Taxonomies
6
  Author: Code Amp
7
  Author URI: https://codeamp.com
8
+ Version: 1.2.15
9
  Text Domain: searchandfilter
10
  License: GPLv2
11
  */
14
  * Set up Plugin Globals
15
  */
16
  if (!defined('SEARCHANDFILTER_VERSION_NUM'))
17
+ define('SEARCHANDFILTER_VERSION_NUM', '1.2.15');
18
 
19
  if (!defined('SEARCHANDFILTER_THEME_DIR'))
20
  define('SEARCHANDFILTER_THEME_DIR', ABSPATH . 'wp-content/themes/' . get_template());