Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    this is because “Text Replace” does its replacing earlier than my plugin replaces the [table] shortcode with HTML for the table. Because of the shortcodes I can not change the time of replacement from my side.
    You could only change this in the “Text Replace” plugin. You’ll need to go to line 100
    add_filter('the_content', array(&$this, 'text_replace'), 2);
    and replace the 2 at the end with something higher than 11 (e.g. 12).

    Then all “Text Replacing” will take place after the table is printed, which means, that stuff in a table cell will also get replaced.

    Hope this helps!
    Tobias

    Thread Starter eneas

    (@eneas)

    Thank you! Works for me. Just had to change line 99 as well.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘wp-table-reloaded and text replace’ is closed to new replies.