Hi Juanyo I solved this problem with some editing. I’ll show you how.
Go to hueman/inc/featured.php and on line 10 is this code
'cat' => ot_get_option('featured-category')
change “cat” to “tag_id” like this
'tag_id'=> ot_get_option('featured-category')
then go to hueman/functions/theme-options.php an on line 215 should be this
'label' => 'Featured Category'
change Featured Category to Featured Tag
'label'=> 'Featured Tag'
and on line 218 should be code
'type' => 'category-select'
change it to tag-select
'type' => 'tag-select'
and then edit function.php file in folder hueman, on line 467 is this code
'category' => ot_get_option('featured-category')
change category to tag_id
'tag_id' => ot_get_option('featured-category')
It should help you ??