Feb 24, 2023 6:19 pm
Hello,
New to WPDiscuz, I have been trying to enable it in other pages than my blog and it will not appear.
I did the following already, where I added the IDs and select the different pages:
I also already added code to my theme:
function my_wpdiscuz_shortcode() {
$html = "";
if (file_exists(ABSPATH . "wp-content/plugins/wpdiscuz/themes/default/comment-form.php")) {
ob_start();
include ABSPATH . "wp-content/plugins/wpdiscuz/themes/default/comment-form.php";
$html = ob_get_clean();
}
return $html;
}
add_shortcode("wpdiscuz_comments", "my_wpdiscuz_shortcode");
Website URL
4 Replies
Feb 25, 2023 10:44 am
Hi @jrm2288,
Please check out the rest of the points mentioned in this doc and leave some feedback for each one: https://wpdiscuz.com/docs/wpdiscuz-7/getting-started/missing-comment-form/