Support

Account

Home Forums General Issues Filtering issues which remove images and filters on page Reply To: Filtering issues which remove images and filters on page

  • Typo in the above, in the functions part, change:

    if( $sector ) {
    		$terms = get_terms( $genre ); 
    		$genre_id = wp_list_pluck( $terms, 'term_id' );
    	}

    To:

    if( $genre ) {
    		$terms = get_terms( $genre ); 
    		$genre_id = wp_list_pluck( $terms, 'term_id' );
    	}