[SOLVED] Global Areas not showing when logged out -v8
Permalink
Hey folks,
I am facing a strange behaviour I've never encountered. Maybe I'm just not seeing something.
I'm building a site with version 8 and added some global areas to the footer - everything fine so far. Only problem - the global areas (respective - the stacks in them) do not show when not logged in. Code is below - did i miss something?
[SOLVED]
Ok, for anyone being the same confused as I was:
This is a multilingal site, so I created the stacks as multilingual stacks, put content in it and so on.
Because it displayed niceley, I didnt think no more. But I had not yet created the multilingual versions of the global areas.
Now that I look at it, it is probably redundant...
I am facing a strange behaviour I've never encountered. Maybe I'm just not seeing something.
I'm building a site with version 8 and added some global areas to the footer - everything fine so far. Only problem - the global areas (respective - the stacks in them) do not show when not logged in. Code is below - did i miss something?
<div class="row"> <div class="small-12 medium-6 large-3 columns"> <?php $a = new GlobalArea('Footer Top Box 1'); $a->setAreaGridMaximumColumns(12); $a->display(); ?> </div> <div class="small-12 medium-6 large-3 columns"> <?php $a = new GlobalArea('Footer Top Box 2'); $a->setAreaGridMaximumColumns(12); $a->display(); ?> </div>
Viewing 15 lines of 30 lines. View entire code block.
[SOLVED]
Ok, for anyone being the same confused as I was:
This is a multilingal site, so I created the stacks as multilingual stacks, put content in it and so on.
Because it displayed niceley, I didnt think no more. But I had not yet created the multilingual versions of the global areas.
Now that I look at it, it is probably redundant...