Skip to content

Commit 688ae63

Browse files
Hotfix variable name.
1 parent e6907cf commit 688ae63

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [2.3.1] - 2018-01-08
2+
3+
### Fix
4+
5+
- Ensure header allows dropdown facet types.
6+
17
## [2.3.0] - 2018-01-08
28

39
### New

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"title": "BigBox",
44
"author": "Spencer Finnell",
55
"description": "Easily manage and scale WooCommerce product catalogs.",
6-
"version": "2.3.0",
6+
"version": "2.3.1",
77
"license": "GPL-2.0-or-later",
88
"main": "webpack.config.js",
99
"engines": {

resources/views/integrations/facetwp/partials/navbar-search.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<?php
4646
$search_taxonomy = get_taxonomy( str_replace( 'tax/', '', $dropdown_facet['source'] ) );
4747

48-
if ( $search_taxonomy && in_array( $search_facet['type'], bigbox_facetwp_get_dropdown_whitelist(), true ) ) :
48+
if ( $search_taxonomy && in_array( $dropdown_facet['type'], bigbox_facetwp_get_dropdown_whitelist(), true ) ) :
4949
$name = FWP()->helper->get_setting( 'prefix' ) . $dropdown_facet['name'];
5050
$all = esc_html( isset( $dropdown['label_any'] ) ? $dropdown_facet['label_any'] : __( 'All', 'bigbox' ) );
5151
?>

0 commit comments

Comments
 (0)