Hi Irene,
I’ve just consulted this with our developer and it’s possible to achieve this using some custom scripts. Kindly install the “Code Snippet” plugin and insert the code below to display the review stars below the title.
function _gd_custom_detail_page_review_below_title() {
global $post;
if ( !empty( $post->ID ) && geodir_is_page( 'detail' ) ) {
$post_avgratings = geodir_get_post_rating($post->ID);
?>
<div class="_gd-header-ratings clearfix">
<div class="_gd-custom-stars" style="display:inline-block"><?php echo geodir_get_rating_stars($post_avgratings, $post->ID);?></div>
<div class="_gd-custom-count" style="display:inline-block"><a href="<?php echo get_comments_link($post->ID); ?>"><?php geodir_comments_number($post->rating_count); ?></a></div>
</div>
<?php
}
}
add_action( 'geodir_details_main_content', '_gd_custom_detail_page_review_below_title', 21 );
If it doesn’t work, please share WP temp admin access to your site so we can take a better look. You can post the details here using the private reply option below.
Thanks!