您在這裡
使用者登入
最新文章
回應
3 年 5 個月 之前
6 年 5 個月 之前
6 年 5 個月 之前
6 年 5 個月 之前
6 年 5 個月 之前
6 年 5 個月 之前
6 年 6 個月 之前
6 年 6 個月 之前
6 年 6 個月 之前
6 年 6 個月 之前
Re: hierarchical_select問題
看這篇:
http://drupaltaiwan.org/forum/20081224/2913
Re: hierarchical_select問題
是指再裝category模組之後再修改node.tpl樣版嘛?因為加了category模組再修改改node.tpl出現錯誤訊息
心中常存善解、包容、感思、知足、惜福 (靜思語錄)
Re: hierarchical_select問題
不用安裝category,那是怪物!!!!
改掉就好
<?php if ($node->taxonomy) { ?>
<?php foreach($node->taxonomy as $key => $term)- ';
{
print '
$all_parents = taxonomy_get_parents_all($key);
//sort($all_parents);
$items = array();
foreach($all_parents as $pkey => $all_parent){
//print '
';
//print '>' . l($all_parent->name, 'node/' . $all_parent->tid);
array_unshift($items, l($all_parent->name, 'node/' . $all_parent->tid)); //把新的項目加到陣列的開頭
}
print join('>', $items); //將陣列中的的每個項目以>作為分隔字元連接起來成為一個字串
print '
';
} ?>
<?php } ?>
Re: hierarchical_select問題
我剛才有裝上來修改…謝謝… (而且看到它介紹這模組,它說將它解除安裝是很困難 >w<…那,我這樣有關係嘛?就算已經移掉的話…)
"The Category module is large and very complex. Installing it and migrating your existing data into it is no small task, "
我改了一點點
我發覺好像'node/'的話捉不到資料,所以改taxonomy/term/
array_unshift($items, l($all_parent->name, 'taxonomy/term/' . $all_parent->tid)); //把新的項目加到陣列的開頭
}
^_^謝謝…
心中常存善解、包容、感思、知足、惜福 (靜思語錄)
Re: hierarchical_select問題
還好你很快移除掉了 XD
可以參考這篇:http://hanamitsuki.com/notes/drupal/72
Re: hierarchical_select問題
category 模組是超級大地雷,我個人是避之唯恐不及~
他會深深的影響 taxnomy 的正常運作~
Re: hierarchical_select問題
嗯!謝謝~
想再詢問使用Taxonomy Manager來建立次分類的問題。我以這模組建立了400多項的次分類
但如果再使用drupal內建的分類系統卻發現它的分頁系統啊load不到資料~得切到另外一頁面才開始有資料…突然發覺有這問題
心中常存善解、包容、感思、知足、惜福 (靜思語錄)