Mar 28, 2022 8:19 am
wpdiscuz appears well on articles that are not full page, but does not appear on full page articles, do you have an explanation and a solution?
Website URL
2 Replies
Mar 28, 2022 8:35 am
I found the solution in the forum https://wpdiscuz.com/community/postid/10652/
by adding a short code created in the wp-config.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");