Search & Filter - Version 1.2.10

Version Description

  • Fixed - an issue with our syntax highlighting script modifying our shortcodes
Download this release

Release Info

Developer DesignsAndCode
Plugin Icon 128x128 Search & Filter
Version 1.2.10
Comparing to
See all releases

Code changes from version 1.2.9 to 1.2.10

Files changed (3) hide show
  1. of-admin.php +2 -2
  2. readme.txt +8 -4
  3. search-filter.php +3 -3
of-admin.php CHANGED
@@ -36,9 +36,9 @@
36
  }
37
  echo '
38
  <script type="text/javascript">
39
- jQuery(function() {
40
  jQuery(\'pre code\').each(function(i, e) {hljs.highlightBlock(e)});
41
- });
42
  </script>
43
  ';
44
  echo '<div class="wrap"><div id="icon-plugins" class="icon32"></div>';
36
  }
37
  echo '
38
  <script type="text/javascript">
39
+ /*jQuery(function() {
40
  jQuery(\'pre code\').each(function(i, e) {hljs.highlightBlock(e)});
41
+ });*/
42
  </script>
43
  ';
44
  echo '<div class="wrap"><div id="icon-plugins" class="icon32"></div>';
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: DesignsAndCode
3
  Donate link:
4
  Tags: category, filter, taxonomy, search, wordpress, post type, post date
5
  Requires at least: 3.5
6
- Tested up to: 4.8
7
- Stable tag: 1.2.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -34,6 +34,10 @@ The documentation has been updated to include examples almost all configurable o
34
 
35
  == Changelog ==
36
 
 
 
 
 
37
  = 1.2.9 =
38
  * Fixed - bugs with WP 4.4 compatibility
39
  * Fixed - an issue with operators being case sensitive - they are no longer case sensitive
@@ -136,7 +140,7 @@ You can search by Category, Tag, Custom Taxonomy, Post Type, Post Date or any co
136
  = New: Search & Filter Pro =
137
 
138
 
139
- * View live demo >> [demo 1](http://demo.designsandcode.com/sfpro-movie-reviews/) | [demo 2](http://demo.designsandcode.com/sfpro-woo-mystile/product-search/) | [video](http://www.designsandcode.com/wordpress-plugins/search-filter-pro/)
140
  * Search **Custom Fields**, **Post Meta**, **Authors**, Post Types, Post Dates, Taxonomies, Tags, Categories
141
  * Use **AJAX** to display results - no more page reloading!
142
  * Search **Post Meta/Custom Fields** with checkboxes, radio buttons, dropdowns, multiselects or comboboxes
@@ -152,7 +156,7 @@ You can search by Category, Tag, Custom Taxonomy, Post Type, Post Date or any co
152
  * Works with **Advanced Custom Fields**
153
  * Extremely easy to use admin UI, fully integrated with WP 3.8+
154
  * **Dedicated Support**
155
- * [More info >>](http://www.designsandcode.com/wordpress-plugins/search-filter-pro/)
156
 
157
 
158
 
3
  Donate link:
4
  Tags: category, filter, taxonomy, search, wordpress, post type, post date
5
  Requires at least: 3.5
6
+ Tested up to: 4.9
7
+ Stable tag: 1.2.10
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.10 =
38
+ * Fixed - an issue with our syntax highlighting script modifying our shortcodes
39
+
40
+
41
  = 1.2.9 =
42
  * Fixed - bugs with WP 4.4 compatibility
43
  * Fixed - an issue with operators being case sensitive - they are no longer case sensitive
140
  = New: Search & Filter Pro =
141
 
142
 
143
+ * View live demo >> [demo 1](http://demo.designsandcode.com/sfpro-movie-reviews/) | [demo 2](http://demo.designsandcode.com/sfpro-woo-mystile/product-search/) | [video](https://searchandfilter.com/)
144
  * Search **Custom Fields**, **Post Meta**, **Authors**, Post Types, Post Dates, Taxonomies, Tags, Categories
145
  * Use **AJAX** to display results - no more page reloading!
146
  * Search **Post Meta/Custom Fields** with checkboxes, radio buttons, dropdowns, multiselects or comboboxes
156
  * Works with **Advanced Custom Fields**
157
  * Extremely easy to use admin UI, fully integrated with WP 3.8+
158
  * **Dedicated Support**
159
+ * [More info >>](https://searchandfilter.com/)
160
 
161
 
162
 
search-filter.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.designsandcode.com/447/wordpress-search-filter-plugin-for
5
  Description: Search and Filtering system for Pages, Posts, Categories, Tags and Taxonomies
6
  Author: Designs & Code
7
  Author URI: http://www.designsandcode.com/
8
- Version: 1.2.9
9
  Text Domain: searchandfilter
10
  License: GPLv2
11
  */
@@ -16,7 +16,7 @@ License: GPLv2
16
  * Set up Plugin Globals
17
  */
18
  if (!defined('SEARCHANDFILTER_VERSION_NUM'))
19
- define('SEARCHANDFILTER_VERSION_NUM', '1.2.9');
20
 
21
  if (!defined('SEARCHANDFILTER_THEME_DIR'))
22
  define('SEARCHANDFILTER_THEME_DIR', ABSPATH . 'wp-content/themes/' . get_template());
@@ -101,7 +101,7 @@ if ( ! class_exists( 'SearchAndFilter' ) )
101
  {
102
  wp_enqueue_style( 'of_syntax_style', SEARCHANDFILTER_PLUGIN_URL.'/admin/github.css', false, 1.0, 'all' ); //more highlight styles http://softwaremaniacs.org/media/soft/highlight/test.html
103
  wp_enqueue_style( 'of_style', SEARCHANDFILTER_PLUGIN_URL.'/admin/style.css', false, 1.0, 'all' );
104
- wp_enqueue_script( 'of_syntax_script', SEARCHANDFILTER_PLUGIN_URL.'/admin/syntax.highlight.min.js' );
105
  }
106
  }
107
 
5
  Description: Search and Filtering system for Pages, Posts, Categories, Tags and Taxonomies
6
  Author: Designs & Code
7
  Author URI: http://www.designsandcode.com/
8
+ Version: 1.2.10
9
  Text Domain: searchandfilter
10
  License: GPLv2
11
  */
16
  * Set up Plugin Globals
17
  */
18
  if (!defined('SEARCHANDFILTER_VERSION_NUM'))
19
+ define('SEARCHANDFILTER_VERSION_NUM', '1.2.10');
20
 
21
  if (!defined('SEARCHANDFILTER_THEME_DIR'))
22
  define('SEARCHANDFILTER_THEME_DIR', ABSPATH . 'wp-content/themes/' . get_template());
101
  {
102
  wp_enqueue_style( 'of_syntax_style', SEARCHANDFILTER_PLUGIN_URL.'/admin/github.css', false, 1.0, 'all' ); //more highlight styles http://softwaremaniacs.org/media/soft/highlight/test.html
103
  wp_enqueue_style( 'of_style', SEARCHANDFILTER_PLUGIN_URL.'/admin/style.css', false, 1.0, 'all' );
104
+ //wp_enqueue_script( 'of_syntax_script', SEARCHANDFILTER_PLUGIN_URL.'/admin/syntax.highlight.min.js' );
105
  }
106
  }
107