Title: Remove comments section
Last modified: August 31, 2016

---

# Remove comments section

 *  Resolved [simonv4549](https://wordpress.org/support/users/simonv4549/)
 * (@simonv4549)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/remove-comments-section-3/)
 * How do I remove the comments section from the individual testimonials pages? 
   I really dont want them on the page.
 * [https://wordpress.org/plugins/easy-testimonials/](https://wordpress.org/plugins/easy-testimonials/)

Viewing 4 replies - 1 through 4 (of 4 total)

 *  Plugin Contributor [richardgabriel](https://wordpress.org/support/users/richardgabriel/)
 * (@richardgabriel)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/remove-comments-section-3/#post-7137076)
 * Hey Simon!
 * That’s coming from your WordPress theme.
 * By default, custom post types will be rendered using your Theme’s single.php 
   file, which I’m assuming includes the comments template functions.
 * To remove this, you can simply copy single.php to single-testimonial.php and 
   remove the unwanted code — there isn’t a way for us to do this from within the
   plugin for you!
 * Alternatively, you could attempt to hide it via CSS — that would be a bit of 
   a workaround, IMHO.
 * I hope this helps!
 * All the best,
    Richard
 *  Thread Starter [simonv4549](https://wordpress.org/support/users/simonv4549/)
 * (@simonv4549)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/remove-comments-section-3/#post-7137129)
 * Thanks for the reply, I have copied the single.php to single-testimonial.php 
   but there is no comment code within that template. How to a trace where to comments
   are being added from? The single-testimonial.php works as I can add content to
   it and it shows with the single testimonial but theres no comment section to 
   remove?
 *     ```
       <?php
   
       get_header();
       ?>
   
           <!-- #content Starts -->
       	<?php woo_content_before(); ?>
           <div id="content" class="col-full">
   
           	<div id="main-sidebar-container">    
   
                   <!-- #main Starts -->
                   <?php woo_main_before(); ?>
                   <section id="main">
       <?php
       	woo_loop_before();
   
       	if (have_posts()) { $count = 0;
       		while (have_posts()) { the_post(); $count++;
   
       			woo_get_template_part( 'content', get_post_type() ); // Get the post content template file, contextually.
       		}
       	}
   
       	woo_loop_after();
       ?>
                   </section><!-- /#main -->
                   <?php woo_main_after(); ?>
   
                   <?php get_sidebar(); ?>
   
       		</div><!-- /#main-sidebar-container -->         
   
       		<?php get_sidebar('alt'); ?>
   
           </div><!-- /#content -->
       	<?php woo_content_after(); ?>
   
       <?php get_footer(); ?>
       ```
   
 *  Thread Starter [simonv4549](https://wordpress.org/support/users/simonv4549/)
 * (@simonv4549)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/remove-comments-section-3/#post-7137130)
 * I went with css in the end but still would like to know about removing the comments
   in the single-testimonial.php as above.
 *     ```
       .single-testimonial #post-author,
       .single-testimonial #comments,
       .single-testimonial #respond {
           display: none;
       }
       ```
   
 *  Plugin Contributor [richardgabriel](https://wordpress.org/support/users/richardgabriel/)
 * (@richardgabriel)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/remove-comments-section-3/#post-7137198)
 * Hey Simon!
 * OK, I see that’s a WooThemes template, so chances are they’ve added their comments
   in a more custom way (perhaps in one of their woo_ functions.) It could be inside
   the template part that matches this particular template (so you will want to 
   dig around in your themes template parts and look for the matching one, probably
   named content-something.php.)
 * I hope that helps!
 * All the best,
    Richard

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Remove comments section’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/easy-testimonials.svg)
 * [Easy Testimonials](https://wordpress.org/plugins/easy-testimonials/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/easy-testimonials/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/easy-testimonials/)
 * [Active Topics](https://wordpress.org/support/plugin/easy-testimonials/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/easy-testimonials/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/easy-testimonials/reviews/)

 * 4 replies
 * 2 participants
 * Last reply from: [richardgabriel](https://wordpress.org/support/users/richardgabriel/)
 * Last activity: [10 years, 3 months ago](https://wordpress.org/support/topic/remove-comments-section-3/#post-7137198)
 * Status: resolved