On a single page the link for the taxonomy term is incorrect.
Currently the urls show up as follows:
http://domain.com/faqs/category/taxonomy-category-slug/
I fixed this issue by changing inc/functions.php line 257
From:
$qa_tax_output .= '<a href=" ' . home_url() . '/' . $qaplus_options['faq_slug'] . '/category/' . $term->slug . '/">';
To:
$qa_tax_output .= '<a href="'.get_term_link($term).'" title="View All '.$term->name.'">';
:P