Hello,
I’m using multiple language setup (Fr En) Fr is default.
I can see that if I hide or show a page from one language in the panel it automaticly shows or hide the page in the other language. How can I show or hide a page in only one language ? or I maybe have miss something. I followed these in instructions in Kirby.
Thank you.
Both languages are in the same page, so yes, you can only show and hide both.
You can however use a custom filter that filters all pages out that are not translated in the current language. Alternatively, you can use a checkbox
field and filter by that:
$articles = $page->children()->visible()->filterBy('languageActive', '1');
This checkbox can be checked independently.
Thank you @lukasbestle I will have some test with it.