AnsPress 2.0 – How to style Ask/Question detail page?

3.22K viewsCore
0

I want to make changes to general page-styling for the Ask and Question-detail pages.
For example I now get a “Leave a comment” link in the Question-detail page, which I would like to remove.
How can I do this?
Can I change the content-template which is used for these pages?

1

Simply create a file with this name:
single-question.php now copy contents from single.php to new file. Now find this (or something similar) :

<?php
   if ( comments_open() || get_comments_number() ) :
	comments_template();
   endif;
?>

and remove it and save.

Thank you so much