Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Zack Katz

    (@katzwebdesign)

    try adding this to your theme’s functions.php file:

    add_filter('kws_gf_directory_value_3', 'html_entity_decode');

    if that doesn’t work, try:

    add_filter('kws_gf_directory_value', 'html_entity_decode');

    and if that doesn’t work, try:

    add_filter('kws_gf_directory_value', 'kws_fix_html_entity_decode');
    function kws_fix_html_entity_decode($value) { return html_entity_decode($value); }
    Thread Starter Jay

    (@fectio1)

    Awesome. Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Gravity Forms Directory] output link instead of html’ is closed to new replies.