Open
Reported for: WPML SEO 2.1.0
Overview of the issue
If your create your homepage in a different language than the site’s default language, you will notice that Rank Math SEO plugin sitemap incorrectly displays the actual slug of the page instead of just the language directory.
Workaround
Please, make sure of having a full backup of your site before proceeding.
- Open …/wp-seo-multilingual/classes/RankMathSEO/Sitemap/Hooks.php file.
- Look for line 58.
- Change:
$this->secondaryHomesById = Maybe::fromNullable( get_option( 'page_on_front' ) ) ->map( PostTranslations::get() ) ->map( Fns::reject( Obj::prop( 'original' ) ) ) ->map( Fns::map( $getIdAndUrl ) ) ->map( Lst::fromPairs() ) ->getOrElse( [] );
- For
$this->secondaryHomesById = Maybe::fromNullable( get_option( 'page_on_front' ) ) ->map( PostTranslations::get() ) ->map( Fns::reject( \WPML\FP\Relation::propEq('language_code', apply_filters('wpml_default_language', 'en')) ) ) ->map( Fns::map( $getIdAndUrl ) ) ->map( Lst::fromPairs() ) ->getOrElse( [] );
I am not too deep in coding and in SEO so please don’t judge. I am just installing WPML and learning about it. Do I need to impelement upper written instructions to mysite? Or it is already fixed in the WPML plugin after my recent instalation?
Hello there,
This issue is still visible with our last version of WPML SEO add-on. If you are experiencing it on your website, please follow the workaround here provided.
Otherwise, you can also contact our support, we will be able to help you implementing this fix.
Regards
Do I understand this correctly that some these
https://disk.yandex.ru/i/z2BSsLGDh0A8Gw
issues are fixed in new version and other issues will be fixed in upcoming versions of WPML, am I right?
Hello there,
Yes, it is correct. Many of the current open issues will be fixed in the next WPML SEO version release. However, a few of them may need to wait for an upcoming version.
Thank you!
Hi, I have this issue and it remains after the supplied fix. Perhaps because my default language is dutch?
https://sagephone.com/page-sitemap.xml (second entry is the home page)
Hello there,
Have you tried replacing the “en” for “nl” in this line?
apply_filters(‘wpml_default_language’, ‘en’)
Let me know if it works.