I have been trying to get your script to work but I keep getting "No listing found" when I use the price sorting, and the first results listing when I select the newer or older sorting.
I think the problem may be that I altered the taxonomy-ad_cat.php file to get a sticky featured listing to work on my site. The code I changed was as followed:
***********************
Code:
<?php get_template_part( 'loop', 'ad_listing' ); ?>
remove it and instead paste this code
Code:
<?php
wp_reset_query();
$paged = 0;
query_posts(array('post__in'=>get_option('sticky_p osts'),'post_type' => APP_POST_TYPE, APP_TAX_CAT => $term->slug, 'paged' => $paged, posts_per_page=>10, orderby => 'rand'));
global $postisfeatured;
$postisfeatured = "1";
get_template_part( 'loop', 'ad_listing' );
wp_reset_query();
$paged = ( get_query_var('paged') ) ? get_query_var('paged') : 1;
query_posts(array('post__not_in'=>get_option('stic ky_posts'),'post_type' => APP_POST_TYPE, APP_TAX_CAT => $term->slug, 'ignore_sticky_posts' => 1, 'paged' => $paged));
$postisfeatured = "";
get_template_part( 'loop', 'ad_listing' );
wp_reset_query();
?>
********************************
Do you think that is why your plugin isn't working for me?
Oh by the way, I than your plugin is fantastic, regardless of whether or not I end up using it.
Thanks