Isabel his genius this plugin, congratulations!
I am having the same problem. On the single, the TAB additional info is gone, does not display. Should exhibit the attributes that were already marked to be displayed in front site. In my case it’s just a simple product with attributes. I did tests with activated and deactivated plugin and found that the additional information tab reappears to disable the plugin.
Thread Starter
Folix
(@folix)
The author helped me…
Just change the way the query is called:
<?php
query_posts('meta_key=post_views_count&orderby=meta_value_num&order=DESC');
if (have_posts()) : while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php
endwhile; endif;
wp_reset_query();
?>
by default it calls the posts but adding post_type=’name-of-taxonomy’
+ info:
http://codex.ww.wp.xz.cn/Class_Reference/WP_Query#Taxonomy_Parameters
Regards.