Idea for WPML users :)
-
Hi!
We are using your amazing plugin. Thank you.
Recently we are going multilangual with WPML plugin. We don’t want to change your plugin. We found out a solution on wpml topic https://wpml.org/forums/topic/table-of-contents-plus-impossible-to-translate/
Basicly its change in /wp-content/plugins/table-of-contents-plus/toc.php
// do the magic $toc_plus = new TOC_Plus();
to:
// do the magic add_action( 'init', 'toc_init' ); function toc_init() { ??? global $toc_plus; ??? $toc_plus = new TOC_Plus(); }
Works fine, but probobly after updates we will lost that. Maybe you can add this to plugin code? ??
- The topic ‘Idea for WPML users :)’ is closed to new replies.