Display comments on specific pages ONLY

By default, comments on pages are turned off in the Classic Responsive Skin. Paste the code below into your custom.php file to activate comments only on pages you specify:

add_filter('template_include', 'comment_display_override', 100);

function comment_display_override($template) {
	$pages = array('about');
	if (is_page($pages))
		add_filter('thesis_html_container_page_comments_show', '__return_true');
	return $template;
}

In the code above, you should replace the $pages array with your own array of pages where you’d like comments to display.

In this example, comments will only be displayed on the About page.