r2d2 of Speak Creative
12/13/2018 - 5:28 PM

Hide class on SiteWrench Page Part Detail pages

Target class will be hidden on detail page views for page parts such as staff directory, calendar events, job board, etc. location.href.indexOf('XXXX') can be changed at will to target which ever page is needed to call the hide function on, the example below is on the staff directory page part.

if (location.href.indexOf('?staff=') >= -1) {
    $('.item-hide').hide();
}