Category Featured Carousel with Category Listings
Has anyone set-up the Featured carousel in the category section and managed to successfully implement only listings from that particular category appearing?
I can get the carousel implemented in the category easily enough by doing the following:
Editing taxonomy-ad_cat.php with the following code:
Code:
<div id="breadcrumb">
<?php if ( function_exists('cp_breadcrumb') ) cp_breadcrumb(); ?>
</div>
<?php
if ( file_exists(STYLESHEETPATH . '/featured.php') )
include_once(STYLESHEETPATH . '/featured.php');
else
include_once(TEMPLATEPATH . '/featured.php');
?>
<!-- left block -->
<div class="content_left">
And by going to theme_enqueue.php and removing this code:
So the carousel now appears in the category section but does anyone know a way to refine this so that only featured listed in the specific category appear?
Would it require some conditional statements either in taxonomy-ad_cat.php or in featured.php?