I want to create a taxonomy view which shows the term name and the term image. For those terms without term image, i want to filter out them. Unfortunately there is no term image filter in the view setting. One work around is overriding the view query by implementing the hook_views_pre_execute(&$view) in a custom module. Before you construct the new SQL, you should set all your desire settings in the view editing page first. Then you can create a new SQL base on that view query.
Taxonomy is one of the Drupal Core Modules. Before you can apply categories and tags on node. You have to define them @ Administer –>> Content management –> Taxonomy.
In this example, i would like to specific some Tags for Stories node type. So i create a Vocabulary called Stories. You can allow user to enter his/her own Terms/Tags or multiple selection in the Settings tab. Continue reading Drupal – Manage Categories and Tags by Taxonomy→