January 7, 2013 at 7:14 pm
#2207
Keymaster
Hello,
This is not possible from your WordPress admin panel, however there is a way to do this by utilizing the frameworkâs filters in your custom code.
Copy this into the functions.php file of your child theme:
function activate_page_comments( $setup ) { $setup['comments']['pages'] = true; return $setup; } add_filter( 'themeblvd_global_config', 'activate_page_comments' );