parent
54260cf7a4
commit
d3472a6207
|
@ -92,7 +92,7 @@ class WC_Product_Cat_Dropdown_Walker extends Walker {
|
||||||
* @return null Null on failure with no changes to parameters.
|
* @return null Null on failure with no changes to parameters.
|
||||||
*/
|
*/
|
||||||
public function display_element( $element, &$children_elements, $max_depth, $depth = 0, $args, &$output ) {
|
public function display_element( $element, &$children_elements, $max_depth, $depth = 0, $args, &$output ) {
|
||||||
if ( ! $element || ( 0 === $element->count && ! empty( $args['hide_empty'] ) ) ) {
|
if ( ! $element || ( 0 === $element->count && ! empty( $args[0]['hide_empty'] ) ) ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );
|
parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );
|
||||||
|
|
|
@ -138,7 +138,7 @@ class WC_Product_Cat_List_Walker extends Walker {
|
||||||
* @return null Null on failure with no changes to parameters.
|
* @return null Null on failure with no changes to parameters.
|
||||||
*/
|
*/
|
||||||
public function display_element( $element, &$children_elements, $max_depth, $depth = 0, $args, &$output ) {
|
public function display_element( $element, &$children_elements, $max_depth, $depth = 0, $args, &$output ) {
|
||||||
if ( ! $element || ( 0 === $element->count && ! empty( $args['hide_empty'] ) ) ) {
|
if ( ! $element || ( 0 === $element->count && ! empty( $args[0]['hide_empty'] ) ) ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );
|
parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );
|
||||||
|
|
Loading…
Reference in New Issue