Hey Phil,
Honestly, I’ve no idea! Maybe it is actually specific to the 3.9.2 release? That would seem a little odd though; I don’t think many changes happen to that class these days…
Thanks for opening an issue; very kind of you! Totally see your point though; I’m sure I’ve got client sites using that code with no issues. Very strange.
Rich
I managed to resolve this for @factorysketcher by updating line 43 in the file cptbc-frontend.php to this:
$args['tax_query'][] = array(
"taxonomy" => "carousel_category",
"field" => "slug",
"terms" => $atts['category'],
"operator" => "IN"
);
You’ll find it’s currently $args['carousel_category'] = $atts['category']; which apparently stopped working in WordPress version 3.9.2.
Hope that helps!