Mar 15, 2021 12:06 pm
Hi team,
Can someone please support here:
I want to add wpdiscuz as a short code to a custom single post page for new posts and custom new posts.
However, the previously provided shortcode: [wpdiscuz_comments] does not work (also not on normal single post pages)
I work with Brizy page builder.
It would be much appreciated if the plugin makers and/or experienced users can help out with providing the right shortcode/code to make this work.
Kind regards,
Brian
1 Reply
Mar 15, 2021 12:08 pm
Have you added the following code in the active theme functions.php file?
function my_wpdiscuz_shortcode() {
$html = "";
if (file_exists(ABSPATH . "wp-content/plugins/wpdiscuz/themes/default/comment-form.php")) {
ob_start();
include_once ABSPATH . "wp-content/plugins/wpdiscuz/themes/default/comment-form.php";
$html = ob_get_clean();
}
return $html;
}
add_shortcode("wpdiscuz_comments", "my_wpdiscuz_shortcode");