Viewing File: /home/maglabs/exclusive/wp-content/plugins/g5-ere/templates/agent/single/block/review.php

<?php
// Do not allow directly accessing this file.
if ( ! defined( 'ABSPATH' ) ) {
	exit( 'Direct script access denied.' );
}
$enable_comments_reviews = absint( ere_get_option( 'enable_comments_reviews_agent', 0 ) );
if ( $enable_comments_reviews === 0 ) {
	return;
}
$title = __( 'Rating & Reviews', 'g5-ere' );
if ( $enable_comments_reviews === 1 ) {
	$title = __( 'Reviews', 'g5-ere' );
}
if ( is_author() ) {
	return;
}
?>
<div class="g5ere__single-block g5ere__agent-block g5ere__agent-block-review card">
    <div class="card-header">
        <h2><?php echo esc_html( $title ); ?></h2>
    </div>
    <div class="card-body">
		<?php comments_template(); ?>
    </div>
</div>
Back to Directory File Manager