Question about HashCash plugin and v1.5
-
I’m in the process of implementing the code modifications as outlined in the instructions for WP HashCash.
It says to put this:
<script src="https://yoursite.com/wp/wp-content/plugins/md5.js" type="text/javascript"></script><script type="text/javascript"> function removeHTMLComments(html) { return html.replace(/<!(?:--[\s\S]*?--\s*)?>\s*/g,''); } function antispam(in_str){ in_str = removeHTMLComments(in_str); eElement = document.getElementById("antispam_id"); if(!eElement){ return false; } else{ eElement.name = hex_md5(in_str); eElement.value = removeHTMLComments(eElement.value); } }</script>
somehwere in the head of my index.php. Well, since upgrading to v1.5 I don’t see the
<head>
anywhere in there.Can anyone tell me where this goes?
- The topic ‘Question about HashCash plugin and v1.5’ is closed to new replies.