Hi there,
Thanks, I finally found what causing it. It’s because of your custom code from your child theme’s functions.php
if(ICL_LANGUAGE_CODE=='en'){
return "";
}
It should be like this,
if(ICL_LANGUAGE_CODE=='en'){
return $content;
}
Don’t return an empty content, just return the default content.
Thanks!