Hi @trixxmanaty,
Thanks for contacting me here.
You can probably do this on a custom template where you go direct to the DB and count the records yourself (based on whatever criteria you want). Here’s our customization docs if you want to go that route:
http://docs.businessdirectoryplugin.com/themes/customization.html#how-to-implement-a-template-override
Otherwise, it’s not a feature of the core plugin…If your goal is to do simple pagination, you can install WP-PageNavi and we integrate with that, but I don’t believe you’ll see the see the exact display above…
Noted – thank you.
I managed to come right by overriding the listings template and inserting this code where I want to show the total number of listings.
$count_posts = wp_count_posts('wpbdp_listing');
$total_posts = $count_posts->publish;
echo . $total_posts . 'Results'