This thread is resolved. Here is a description of the problem and solution.
Problem:
Cron job otgs_send_components_data runs now and then.
Solution:
- First, make sure the option in the "Theme and plugins reporting" section at wp-admin -> WPML -> Languages is disabled.
- Then, backup the site completely to prevent any issues and edit your child theme's functions.php file and add the following code to the file:
/** * Disable Cron for WPML data. * @link wpmlsupp-9731 */ add_filter('pre_schedule_event', function($pre, $event){ $otgs_share_local_components = get_option('otgs_share_local_components'); if (!empty($otgs_share_local_components['wpml'])) { return $pre; } if ($event->hook === 'otgs_send_components_data') { return false; } return $pre; }, 10, 2);
Relevant Documentation:
This is the technical support forum for WPML - the multilingual WordPress plugin.
Everyone can read, but only WPML clients can post here. WPML team is replying on the forum 6 days per week, 22 hours per day.
This topic contains 2 replies, has 2 voices.
Last updated by 1 year, 10 months ago.
Assisted by: Subash Chandra Poudel.