タイトル、タイプ、言語、作成者などのフィールドを持つコンテンツを表示するためのビューを作成していますが、言語ニュートラルとして値を持つ言語フィールドが Drupal 7 のビューに表示されません。
誰かが解決策を提案できますか?
By using rewrite result option of views, that issue can be handled.
Steps are as follows :
1. Enable Views PHP module.
2. Go to desired view and check 'exclude from display' in language field.
3. Add a field of type Global: PHP.
4. In Output field write this code :
<?php
if($row->language == 'und') {
echo 'Language Neutral';
}
if($row->language == 'en') {
echo 'English';
}
?>