[ad_1]
Hello @rafax
Thank you for asking.
Single location/Single category is just a page. We are using shortcode to show the single taxonomy on this page. So you can just simply distinguish it by checking with the page slug.
if( is_page( 'single-location' ) ):
if( is_page( 'single-category' ) ):You can also get the current taxonomy term slug from the query variable –
$location= get_query_var( 'at_biz_dir-location', '' );
$category = get_query_var( 'at_biz_dir-category', '' );Please let me know if you need further information.
Kind Regards
