listing-listview.php and widget-listing-listview.php have been modified and here’s the code in my child theme’s functions.php file:
function modify_geodir_featured_image($post) {
if ($post->geodir_company_logo) {
?>
<a href="<?php the_permalink(); ?>">
<img src="<?php echo $post->geodir_company_logo; ?>" />
</a>
<?php
}
}
add_action('geodir_before_badge_on_image', 'modify_geodir_featured_image');