Installing recaptcha to my inquiry form
I'm talking about this recaptcha - https://developers.google.com/recaptcha/docs/php?hl=de
I'm using Wordpress (with my own hosting).
Example page how that "send inquiry" button looks like - http://www.camarocarplace.com/cars/m...vrolet-camaro/
I already added that "recaptchalib.php" file to my theme files and I can access it from my wp panel>editor. However, I don't need to touch it, because I just need to have it there and I need to add that code (in that link, given below "quick start") where my inquiry form is.
As I understand, I need to add this code
require_once('recaptchalib.php');
$publickey = "your_public_key"; // you got this from the signup page
echo recaptcha_get_html($publickey); I've found that file and here is the code for that inquiry form (this is the whole code from .php file:
<?php
if($_POST)
{
$yourname = $_POST['inq_name'];
$youremail = $_POST['inq_email'];
$inq_phone = $_POST['inq_phone'];
$frnd_comments = $_POST['inq_msg'];
$pid = $_POST['pid'];
$post_title = '<a href="'.get_permalink($post->ID).'">'.$post->post_title.'</a>';
$to_name = get_post_meta($post->ID,'name',true);
$to_email = get_post_meta($post->ID,'email',true);
if($to_email=='')
{
$to_email = get_option('admin_email');
}
///////Inquiry EMAIL START//////
global $upload_folder_path;
$clientdestinationfile = get_bloginfo( 'template_directory', 'false' )."/library/notification/send_inquiry.txt";
$message1 = file_get_contents($clientdestinationfile);
$filecontent_arr1 = explode('[SUBJECT-STR]',$message1);
$filecontent_arr2 = explode('[SUBJECT-END]',$filecontent_arr1[1]);
$subject = $filecontent_arr2[0]. __(' for ').'"'.$post->post_title.'"';
$client_message = $filecontent_arr2[1];
$yourname_link = __('<br>From : ').$yourname.__('<br>Phone : ').$inq_phone.'<br><br>Sent from - <b><a href="'.get_option('siteurl').'">'.get_option('blogname').'</a></b>.';
/////////////customer email//////////////
$search_array = array('[#$to_name#]','[#$post_title#]','[#$frnd_subject#]','[#$frnd_comments#]','[#$your_name#]');
$replace_array = array($to_name,$post_title,$frnd_subject,nl2br($frnd_comments),$yourname_link);
$client_message = str_replace($search_array,$replace_array,$client_message);
/* echo "From : $youremail Name : $yourname <br>";
echo "To : $to_email Name : $to_name <br>";
echo "Subject $subject <br>";
echo "$client_message";
exit;*/
if($to_email)
{
sendEmail($youremail,$yourname,$to_email,$to_name,$subject,$client_message,$extra='');
}
//////Inquiry EMAIL END////////
$url = get_permalink($post->ID);
if(strstr($url,'?'))
{
$url = $url."&send_inquiry=success";
}else
{
$url = $url."?send_inquiry=success";
}
wp_redirect($url);
}
?> Any ideas how to make this work?
HTML/CSS/jQuery/ZURB Foundation/Twitter Bootstrap/Wordpress/Frontend Performance Optimizing
---
Need HTML/CSS help? Skype: microcosmic - Test Your Responsive Design - InternetCookies.eu
HTML/CSS/jQuery/ZURB Foundation/Twitter Bootstrap/Wordpress/Frontend Performance Optimizing
---
Need HTML/CSS help? Skype: microcosmic - Test Your Responsive Design - InternetCookies.eu