CryptX and jobroller
Hello guys,
I would like to encrypt the email address that is in the "How to apply" custom field.
This field may either contain text + href link to a page or text + href link to an email address.
So I replaced this line:
<?php echo apply_filters('jr_how_to_apply_content', get_post_meta($post->ID, '_how_to_apply', true)); ?>
with
<?php echo apply_filters('jr_how_to_apply_content', get_encryptx_meta($post->ID, '_how_to_apply', true)); ?>
It works fine in the case of text + href link to an email address. But in the case of text + href link to a page, it messes up with the code (the link anchor is removed).
Any idea why?
Thanks