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?
Limited Support
Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.
We appreciate your patience and understanding while our team is away. Thank you for being part of the wpDiscuz community!
Merry Christmas and Happy Holidays! π
Mar 28, 2022 8:19 am
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");

