Greetings,
Thank you for reaching us.
I am sorry, by default you are unable to show all the categories on the listings card.
However, you can add the following snippet to your theme’s functions.php to display all the categories.
function directorist_categ_show() {
wp_enqueue_script( 'jquery' );
?>
<script>
jQuery(document).ready(function($){
$('.directorist-listing-single__meta--left .directorist-listing-category').each(function(){
$('.directorist-listing-category__popup div').removeClass('directorist-listing-category__popup__content').addClass('categ-show');
$('.directorist-listing-category__extran-count').css('display', 'none');
})
})
</script>
<?php
}
add_action( 'wp_footer', 'directorist_categ_show');
You will also need additional CSS to tweak the style.
Regards,