Displays a Custom Field without executing the Code holded in it
add_filter( 'wpcf_fields_slug_code_value_display', function($content) { $content = preg_replace('/</','&amp;lt;', $content); $content = preg_replace('/>/','&amp;gt;', $content); return $content; } );
Let us know if this snippet is not working for you:
This snippet doesn’t work