Description was always shown no matter what I choose in admin.
So found which line causes such a behavior.

file: taxonomy_vtn.pages.inc
line 374
function taxonomy_vtn_show_terms(...

function taxonomy_vtn_show_terms = TRUE --> always TRUE

quick fix
$show_voc_desc = variable_get('taxonomy_vtn_vocabularies_show_voc_desc', 1);
if (!is_object($params)) {
$params = new stdClass;
$params->check_omit = TRUE;
$params->title_mode = 'title';
$params->show_voc_desc = $show_voc_desc;
}

Comments

AlexisWilke’s picture

Hi Yugene,

This should now be fixed in the -dev version. Thank you for reporting & a fix!

Best,
Alexis

AlexisWilke’s picture

Version: 6.x-1.5 » 6.x-1.7
Status: Active » Fixed

If you still have a problem, let me know. I'll suppose that this is fixed for now.

Thank you.
Alexis

Status: Fixed » Closed (fixed)

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