Forum Replies Created

Viewing 1 replies (of 1 total)
  • Plugin is not working on my website. I tried every method…Help me ASAP… It’s working on the elementor edit section…and when I check the post then there form is missing. I use this code in Code snippets plugin… and also using shortcode [wpdiscuz_comments] in custom elementor blog post.. it doesn’t work…

    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”);

    • This reply was modified 5 years, 8 months ago by Yui.
    • This reply was modified 5 years, 8 months ago by techyshaala.
Viewing 1 replies (of 1 total)