If in a view the variable $views->nodes_per_block is defined, it is possible, that the read mode link is not shown though there are more tags than shown in the block.

This is beause tagadelic_views has its own query to get the tags and this query may return more tags than the previous views-query found nodes.

This can be fixed by adding the following line in theme_tagadelic_display (after $tags = tagadelic_sort_tags($tags); and before return theme('tagadelic_views', $tags, $view);):

$GLOBALS['current_view']->num_rows = count($tags);

Comments

cadiz11’s picture

I'm a beginner for Drupal, so I do not think i grasp my problem very well.

I made a block using the Views Tagadelic module and set a filter, then read more link is appeared automatically, even I disabled this link function. If the link is correct, it is OK, but every time it appeared as /tagadelic/chunk/0. I could not find any way to change this.

I wanted to correct this, and I found this issue. I do not know if it is applicable for 7.x-1.x-dev, and even if it is applicable, I have no idea how I can exactly do this.

If possible, could you please tell me more detailed procedure?

Thanks in advance.

muka’s picture

Status: Active » Closed (won't fix)