Looking at entity reference taxonomy terms here. Somehow colorbox field settings got set, but are configured to FALSE as their value. The code in hook_field_attach_view is running, linking the field to it's entity.

Simple patch

<?php
    if(!isset($settings['colorbox_node_link']) || !$settings['colorbox_node_link']) {
      continue;
    }
?>
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

arosboro’s picture

drett’s picture

Thanks, arosboro. Worked perfectly for me.

iLLin’s picture

Status: Active » Needs review
iLLin’s picture

Status: Needs review » Fixed

Status: Fixed » Closed (fixed)

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