Hi everyone,

It should be great if the taxonomy links shown into a tagadelic content can be disabled, to render a static page/block.

Is it possible?

Comments

bartezz’s picture

How about this:

/**
 * theme function that renders the HTML for the tags
 * @ingroup themable
 */
function phptemplate_tagadelic_weighted($terms) {
	$output = '';
	foreach ($terms as $term) {
		//output .= l($term->name, taxonomy_term_path($term), array('attributes' => array('class' => "tagadelic level$term->weight", 'rel' => 'tag'))) ." \n";
		$output .= "<span class=\"tagadelic level$term->weight\">".$term->name."</span>\n";
	}
	return $output;
}

Place it in your template.php

Bèr Kessels’s picture

Status: Active » Fixed

Is possible in the theme.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.