Hi esnyc13,
Its a bug of JA Lens template, we fixed it and it will be update and released in the next version of this template.
Currently, you can apply this solution:
– Take a backup for your site first.
– Open file: templatesja_lenshtmlmod_k2_toolscategories.php
At approx line 27:
[PHP]
jcounter.each(function(){
var num = this.innerHTML.match(/(d+)/)[0];
if(!isNaN(num) && num <= 0){
$(this).closest(‘li’).addClass(‘inactive’);
}
});
[/PHP]
change it to:
[PHP]
jcounter.each(function(){
if(jcounter.html().length > 0 ){
var num = this.innerHTML.match(/(d+)/)[0];
if(!isNaN(num) && num <= 0){
$(this).closest(‘li’).addClass(‘inactive’);
}
}
});
[/PHP]
and let me know how it goes
Regards