I found and duplicated archive.php to category.php.
I’ve added the line:
<?php do_shortcode('[showauto]'); ?>
In the early part of it as shown here:
<?php get_header(); ?>
<?php do_shortcode('[showauto]'); ?>
<div id="content-archive" class="grid col-620">
<?php if (have_posts()) : ?>
<?php $options = get_option('responsive_theme_options'); ?>
<?php if ($options['breadcrumb'] == 0): ?>
<?php echo responsive_breadcrumb_lists(); ?>
But still no success. I have 2 pages that are set to blog template (full posts), one is set to catA the other is also a blog template (full posts) and set to catB. I have made several posts using either catA or catB, however, they turn up on both catA and catB pages.
Where am I going wrong??