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 gVectors community!
Merry Christmas and Happy Holidays! 🎄
I need to put the Comment Forum at the Top of the Page Comments... I found a thread answer providing that ability but the code is not working
https://wordpress.org/support/topic/shortcode-for-wpdiscuz/
Putting this shortcode above the page comments so users can easily leave a comment
[wpdiscuz_comments]
Putting this in function.php
function my_wpdiscuz_shortcode() {
if (file_exists(ABSPATH . 'wp-content/plugins/wpdiscuz/templates/comment/comment-form.php')) {
ob_start();
include_once ABSPATH . 'wp-content/plugins/wpdiscuz/templates/comment/comment-form.php';
return ob_get_clean();
}
}
add_shortcode('wpdiscuz_comments', 'my_wpdiscuz_shortcode');
This is the old shortcode you should use the code provided by Taron here: https://wpdiscuz.com/community/postid/598/
The is another easiest way you can choose. You'll just need to move the comments_template() function at the top of the page in the theme template files.
