After upgrading the core and modules the two facet block (Occupational Field and Location) will not display any facet result.

The only way to show the facets is to configure the facet display to be shown as Links, but this will resulted in the job search page facets of coresponding facet to be shown as links not links with searchboxes. While keeping the original links with checkboxes will show the facet corectly on the job search page but will not show any facet links on the front page.

Comments

tms1970’s picture

I too have the same issue - I've been updating modules and drupal core (due to security updates) and this is causing all sorts of issues.

I too have switched it to links

Is there a fix for this?

lxndr’s picture

A tiny CSS edit in cloudy.css (profiles/recruiter/themes/cloudy/css/cloudy.css) might bring back the results:

edit:

html.js .page-recruiter .facetapi-checkbox, html.js .front .facetapi-checkbox {
	display: none;
}

to:

html.js .page-recruiter input.facetapi-checkbox, html.js .front input.facetapi-checkbox {
	display: block;
}

cheers,
Alex