Page 1 of 1

Xataface 2.0 - Tagger Module

PostPosted: Sat Nov 10, 2012 12:10 pm
by tonyvenneri
I am using the fantastic tagger module in my site.
The tag are related to a table of "tag" of 200 rows. I noticed that the cloud tag view on the left show only a subset of this table?
Is the any way to customize the number of tag showed in the related section?

Thanks

Re: Xataface 2.0 - Tagger Module

PostPosted: Sat Nov 10, 2012 1:52 pm
by shannah
In the file
http://weblite.ca/svn/dataface/modules/ ... tagger.php
The line
Code: Select all
$newsql .= ' group by `'.$labelCol.'` limit 50';


As a hint, the $field parameter in this method contains an associative array of all of the field directives for the tag field in the fields.ini file.

Or you could just hard code over it... but long term, this really should be parametrized.

-Steve