So when you have the website setup with more than one language you by default from Kirby get two content files if you create content in the none-default language. Is there a way avoid to show the content on the default language, if let´s say the textarea is empty?
<?php
date_default_timezone_set('America/Sao_Paulo');
$articles = $pages->find('articles')
->children()
->visible()
->onlyTranslated()
->filterBy('date', '<=', strtotime(date_default_timezone_get(date('Y-m-d'))))
->flip()
->paginate(14);
?>
This is how I get the blog list now. And this works great for the none-default language. But for the default language is still visible in the list. How will I need to go around the default language?