Hi Thorsten,
great, thank you very much for your answer and also for the solution with functions.php update. That helps a lot.
Best regards
Martin
Hi Thorsten,
did you have a chance to find a solution for this issue?
Thanks a lot,
Martin
Hi Thorsten,
I also haven’t found anything about this issue. Yes, this does happen only with plugin activated. I fixed it temporary by the hotfix in the class
Mlp_Advanced_Translator_Data
in function
public function save( $post_id, WP_Post $post )
I added return after these lines:
$related_blogs = $this->relations->get_related_sites( $source_blog_id );
if ( empty( $related_blogs ) ) {
return;
}
// —- ADDED HERE BECAUSE OF REMOVING PARENT OF RELATED POSTS —-
return;
I hope this helps a bit. Thanks a lot!