The effects of alcohol on sustanon 250 leucine for – real weight loss & bodybuilding benefits?
Integrate wpdiscuz ...
 
Share:
Notifications
Clear all

Integrate wpdiscuz as a shortcode in single posts and custom single posts (with Brizy page builder)

2 Posts
2 Users
0 Likes
976 Views
Posts: 1
Topic starter
(@brianbrian)
New Member
Joined: 3 years ago

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
Asti
Posts: 7119
 Asti
Support
(@asti)
Illustrious Member
Joined: 6 years ago

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");
Reply
Share: