This worked for me…
xili-tidy-tags.php, around line 1275…
inserted if($tag->count < 5)
change 5 to minimum post count for the tags…
— OLD —
foreach ( $listtags as $tag ) {
$class = ((defined(‘DOING_AJAX’) && DOING_AJAX) || » class=’alternate' » == $class ) ? » : » class=’alternate' »;
$tag->count = number_format_i18n( $tag->count );
if ( $this->post_tag == ‘post_tag’ ) {
— NEW —
foreach ( $listtags as $tag ) {
$class = ((defined(‘DOING_AJAX’) && DOING_AJAX) || » class=’alternate' » == $class ) ? » : » class=’alternate' »;
$tag->count = number_format_i18n( $tag->count );
if($tag->count < 5){
continue;
}
if ( $this->post_tag == ‘post_tag’ ) {