Skip to content

Instantly share code, notes, and snippets.

@JoeHana
Last active December 15, 2015 09:29
Show Gist options
  • Save JoeHana/5238863 to your computer and use it in GitHub Desktop.
Save JoeHana/5238863 to your computer and use it in GitHub Desktop.
Fixing Captcha Issue
<?php
/**
* Fixing Captcha Issue
*/
add_filter( 'wpcasa_property_contact_fields', 'custom_property_contact_fields', 11 );
function custom_contact_fields( $contact_fields ) {
$contact_fields['captcha']['font']='./AHGBold.ttf';
return $contact_fields;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment