I ran into an issues where if I had multiple taxonomies only one was actually working.

I changed view_isotope.theme.inc

          // Treat as single value.
          if (isset($vars['isotope_filter_classes'][$index]))
            $vars['isotope_filter_classes'][$index] = strtolower(drupal_clean_css_identifier($value));
          else
            $vars['isotope_filter_classes'][$index] = strtolower(drupal_clean_css_identifier($value));
        }

to

          // Treat as single value.
          if (isset($vars['isotope_filter_classes'][$index]))
            $vars['isotope_filter_classes'][$index] .= ' '. strtolower(drupal_clean_css_identifier($value));
          else
            $vars['isotope_filter_classes'][$index] = strtolower(drupal_clean_css_identifier($value));
        }

Comments

kreynen’s picture

Issue summary: View changes
Status: Active » Needs review
mahiljasani’s picture

No need to change in any file. Just check field settings in views you must check for multiple value setting for filter.

Nikolino’s picture

@mahiljasani
Where you find this option?
Thanks!

Chris Gillis’s picture

Fixed in 7.x-2.0-beta1.

Chris Gillis’s picture

Status: Needs review » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.