WPML compatibility
-
Hi,
This is David from the WPML compatibility team.
We recently had a support request at WPML about your plugin working together with ours:
https://wpml.org/de/forums/topic/xml-config-fuer-plugin-speed-contact/
The problem is that options are loaded from the database too early and WPML hasn’t had the chance to hook its filters for translation.
We could resolve it by change a line in public/class-speed-contact-bar.php line 349, from:
$this->stored_settings = $this->get_stored_settings();to this:
add_action( 'init', function() { $this->stored_settings = $this->get_stored_settings(); } );I am sharing this here so you can make that change in your plugin and give our shared users a smoother experience.
Best,
David
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
The topic ‘WPML compatibility’ is closed to new replies.