To enable wordpress comments on the property page, you need to do the following

  1. locate the property template file. For example, for page design type 1, the file is at “templates/property_page_templates/listing_page_1.php “. For the rest of the templates, the files are in the same folders and are named accordingly.
  2. In the template file, locate the line with “wprentals_property_content_layout($post->ID) “.
  3. add this code after it


<div class="property_page_container">
<?php comments_template('', true );?>
</div>

  1. 4. To align the CSS for the WordPress comments, you may need to use some custom CSS.

    #comment {
    padding-left: 10px;
    float: left;
    width: 100%;
    }