One stack for many languages
PermalinkI'm wondering how to set one global stack for different languages using internationalisation. I have concrete5.7
I have 4 languages (polish, english, spanish and swedish)
In every languages I have a subpage (Offer) and I would like to create one stock for all those languages.
Can you give me an advise?

I put this code to my website, but now i really don't know what to do next :)
but I need one stack which i could place in any language.
I need to edit conctent of this stack in one place for all languages
<?php $st = Stack::getByName('Test stack', 'RECENT', Stack::MULTILINGUAL_CONTENT_SOURCE_DEFAULT); $st->display(); ?>
Unfortunately there is no way of including the stack like this through the UI (as far as I know), this can be only done with this snippet.
That's what I was looking for!
Thank you very much!!