Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter onewordgo

    (@onewordgo)

    I figured it out! This is super exciting! I’m terrible with this kind of thing.

    Here’s what I did:

    In my theme’s functions.php file, I added TWO filters.

    First:

    add_filter("gform_allowable_tags_6", "allow_basic_tags");
    function allow_basic_tags($allowable_tags){
        return '<p><a><strong><em>';}

    And then:

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

    And ta-da! I’m now able to add basic links to my table! Yaaaay!

    Plugin Author Zack Katz

    (@katzwebdesign)

    Nicely done – filters are great 🙂

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Links in table’ is closed to new replies.