Download & Extend

Content Taxonomy fields don't work

Project:Views Table Highlighter
Version:6.x-1.1
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:closed (cannot reproduce)

Issue Summary

Hi,

though it basically works, not all fields appear or are accessable in the php query. We use Content Taxonomy fields for some content types and they don't work with this module. Could you please add support for it? Thanks!

Raphael

Comments

#1

also issiue for me

#2

Status:active» closed (cannot reproduce)

Hmm, this is working for me in 6.x-1.1.

On my test site, I set up a content_taxonomy.module field "field_test_term", with terms "alpha" and "beta".

Using the following highlighter code...

<?php
$term
= taxonomy_get_term_by_name("beta");
if (
$node_data_field_test_term_field_test_term_value==$term[0]->tid) return "red";
?>

...the "beta" nodes were highlighted red.

I added a SimpleTest to verify that this continues to work.