Hi there, in product page you have 2 tabs(Description,reviews) i want to know how i can add a third tab.
Hello Erevos, You just open file node--product_display.tpl.php and add new tab in .... Thank you.
So lets say that i want a tab to show some taxonomy terms from some vocabularies Could you post an example?
To get taxonomy terms from vocabulary you can use function: taxonomy_get_tree Ex: if ($terms = taxonomy_get_tree($vocabulary->vid)) { foreach ($terms as $term) { // Do something with $term->tid or $term->name } }