Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi,

    The javascript error is in relation to the javascript file located here:

    http://www.abrakadoodle.com/blog/wp-content/themes/blueberry/js/toolbox.js

    Check that that file exists, if it doesn’t upload it, if it does re-upload it!

    There is also an error on your template causing the comments form to try and send it’s data to the wrong place. The form named comment form is pointing to the wrong place.

    Currently:

    <form action="/wp-comments-post.php" method="post" id="commentform">

    This needs to be changed to:

    <form action="wp-comments-post.php" method="post" id="commentform">

    KR

    Oliver

    Thread Starter shariabrakadoodlecom

    (@shariabrakadoodlecom)

    Thank you so much. The form error fix you gave me worked.

    But, I cannot find the toolbox.js file. I downloaded and extracted the theme again, but there is no toolbox. in the js folder, the only file is comments
    ?
    -Shari

    Seems the author didn’t include the file! (Just checked myself) This indicates that the theme doesn’t actually need it!

    To stop the errors open the file called functions.php within your theme directory and find this line:

    wp_enqueue_script('blueberrytoolbox', $jspath . 'toolbox.js', array('jquery'), '1.0');

    Change it to: (All i’ve done isd added the square / hash in front of the line)

    #wp_enqueue_script('blueberrytoolbox', $jspath . 'toolbox.js', array('jquery'), '1.0');

    This should stop WP adding it into the headers of your site.

    Let me know how you get on, doing this may stop your theme from working. If it does just remove the square / hash and come back to me, there is another way we can get round it.

    KR

    O

    Wow, am I ever glad I found this thread. I thought upgrading caused the glitch on the comments.

    I am using the same theme (with hacks) and cannot get the comment forms to work.

    The redirect is to a 404 error page and no comment gets queued.

    I’d also like to change the comment form to include email address.
    http://fleacontrolsecrets.com/fleatreatment/2009/07/natural-flea-control-does-not-mean-less-toxic-video/wp-comments-post.php

    I tested the comment box on the http://www.blogname.com on the test site but it does not work as currently configured http://www.blogname.com/blogextension

    Any ideas on how to reconfigure this?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Submitting Comments – errors’ is closed to new replies.