1 kirby page in 2 languages (kirby 4.3, php 8.3)
nl/enquetes/enquete-nl
fr/enquetes/enquete-fr
nl is default language
I have a virtual ‘end’ page.
nl/enquetes/enquete-nl/end → works
but when i switch to ‘fr’ i got and error (page->parent() is NULL in virtual page ‘endtemplate’. In kirby3 this worked i think.
config-file:
'routes' =>[
[
'pattern' =>'(nl|fr)/enquetes/(:any)/end',
'action' => function($lang,$enquete){
$data = [
'slug' => 'end',
'parent' => page('enquetes/'.$enquete),
'template' => 'endtemplate',
'content' => [
'title' => 'Thanks for your participation'
]
];
$page = Page::factory($data);
site()->visit($page, $lang);
return $page;
}
],
Hm, I cannot reproduce this when I test a similar setup it in a Starterkit.
Strange indeed, the error occurs here when the slug of the nl, fr page is different.
When i test with:
nl/enquetes/enquete and fr/enquetes/enquete
then there is no error.
Is it not possible to work with different slugs in this type of case (virtual multilanguage page)?
thanks!
Please change the route to:
[
'pattern' =>'enquetes/(:any)/end',
'language' => '*',
'action' => function($lang, $enquete){
$data = [
'slug' => 'end',
'parent' => page('enquetes/' . $enquete),
'template' => 'endtemplate',
'content' => [
'title' => 'Thanks for your participation'
]
];
$page = Page::factory($data);
site()->visit($page, $lang);
return $page;
}
],
this goes to the error page. Is the $lang variable correct in this situation?
Let’s verify I got it right. You want the following urls to work (I’m using en as default, de as secondary language:
https://mydomain.test/en/enquetes/subpage-1/end
https://mydomain.test/en/enquetes/unterseite-1/end
Where unterseite-1
is set as slug in the content file of the secondary language. Is that correct?
that’s correct and i want to use $page->parent()->title() in the end template.
I guess there is a typo in your second url (en instead of de)
https://mydomain.test/de/enquetes/unterseite-1/end
if all pages in the tree have a slug in the secondary language, you need to adapt the route
[
'pattern' =>'(enquetes|translated-slug)/(:any)/end',
'language' => '*',
'action' => function($lang, $p, $enquete){
$data = [
'slug' => 'end',
'parent' => page($p . '/' . $enquete),
'template' => 'endtemplate',
'content' => [
'title' => 'Thanks for your participation'
]
];
$page = Page::factory($data);
site()->visit($page, $lang);
return $page;
}
],
Replace translated slug with the correct slug name
great!! it works!!
Thanks a lot