Support

Account

Home Forums General Issues Output email field to include mailto: with email Reply To: Output email field to include mailto: with email

  • 
    add_filter('acf/format_value/type=email', 'prepend_mailto', 20);
    function prepend_mailto($value) {
      $value = 'mailto:'.$value;
      return $value;
    }