Closed (fixed)
Project:
Vocabulary Index
Version:
5.x-1.2
Component:
Miscellaneous
Priority:
Minor
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
13 Nov 2008 at 18:39 UTC
Updated:
24 Jul 2013 at 08:40 UTC
Hi, i am new to Drupal and I have a problem ... now i m using this code to show vocabulary as a list of links.
---------------------
/**
* Lists terms for a specific vocabulary without descriptions.
* Each term links to the corresponding /taxonomy/term/tid listing page.
*/
$vid = 1;
$items = array();
$terms = taxonomy_get_tree($vid, 0, -1, 1);
foreach($terms as $term) {
$items[]= l($term->name, "taxonomy/term/$term->tid");
}
if(count($items)) {
return theme('item_list', $items);
}
--------------------------------
now i need to change the page where currently it shows the node teaser and i need only node title..
please suggest me now wht to do?
Thanks
Comments
Comment #1
xanoWhat exactly are you trying to do? Do you want to create a page that lists a vocabulary's terms or do you want to edit node pages?
Comment #2
manuverma commentedi want to create pade with vocabolory term name...
Comment #3
xanoThen install Vocabulary Index and follow the instructions you will see after installation :)
Good luck!
Comment #4
xanoI trust it you have figured it out. Since Vocabulary Index 1 is no longer supported I am closing this issue.
Comment #6
xano