• The plugin doesn’t work in tables. When a word is in a table then the plugin doesn’t link the word, why is that? Is there an extra code for this problem?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter bustel

    (@bustel)

    In my functions.php I have set the follow code:

    /**
    * Enable text linkification for custom fields.
    *
    * @param array $filters Array of filters that the plugin should hook.
    * @return array
    */
    function more_text_replacements( $filters ) {
    $filters[] = ‘post_content’; // Here you could put in the name of any filter you want
    return $filters;
    }
    add_filter( ‘c2c_linkify_text_filters’, ‘more_text_replacements’ );

    it doesn’t work… Can somebody help me?

    Thread Starter bustel

    (@bustel)

    I have tested with a normal table of wordpress and that’s working but the combination of the plugin “tablepress” and “Linkify Text” doesn’t work… ??

    Thread Starter bustel

    (@bustel)

    I have contacted the devlopper of the other plugin: it seems that ‘Linkify Text’ runs to early… how can I fix this problem???

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Linkify Text doesn’t work in tables’ is closed to new replies.