• I just got this plugin working last week, I think I remember just recently updating this plugin, now I get a 403 (Forbidden) error when I try to add a comment

    I also want to note that there is no error text in the red bar at the top of the window when the plugin is trying to display the error….

    I had originally got the plugin working by adding the following to functions.php

    function mytheme_enqueue_comment_reply() {
    // on single blog post pages with comments open and threaded comments
    if ( is_singular() && comments_open() && get_option( ‘thread_comments’ ) ) {
    // enqueue the javascript that performs in-link comment reply fanciness
    wp_enqueue_script( ‘comment-reply’ );
    }
    }
    // Hook into wp_enqueue_scripts
    add_action( ‘wp_enqueue_scripts’, ‘mytheme_enqueue_comment_reply’ );

    found the code here // https://wordpress.stackexchange.com/questions/16773/comments-reply-script-not-working?rq=1

    Anyways, anyone have any ideas why I’d be getting a 403 error now?

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘plugin update then 403 (Forbidden) error’ is closed to new replies.