Closed (won't fix)
Project:
Views Tagadelic
Version:
5.x-1.1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
11 May 2010 at 11:53 UTC
Updated:
29 Apr 2013 at 11:54 UTC
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
Comment #1
cadiz11 commentedI'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.
Comment #2
muka commented