-
AuthorPosts
-
hrasno Friend
hrasno
- Join date:
- April 2008
- Posts:
- 38
- Downloads:
- 7
- Uploads:
- 6
- Thanks:
- 11
- Thanked:
- 2 times in 2 posts
June 15, 2015 at 2:35 pm #207423Instead default position NEWS-HOME (featured news) I need to create four positions like shown in the picture.
Hot to do this?
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
June 15, 2015 at 3:48 pm #574104Hi
Your question and image doesn’t clarify at all how you want to have the new positions set , news-home is a virtual position obtained via menu item settings, it doesn’t exsist into template settings , so if you can give us more details we can guide you on how to add new block into template layout
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
June 15, 2015 at 3:48 pm #640443Hi
Your question and image doesn’t clarify at all how you want to have the new positions set , news-home is a virtual position obtained via menu item settings, it doesn’t exsist into template settings , so if you can give us more details we can guide you on how to add new block into template layout
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
June 15, 2015 at 3:48 pm #739118Hi
Your question and image doesn’t clarify at all how you want to have the new positions set , news-home is a virtual position obtained via menu item settings, it doesn’t exsist into template settings , so if you can give us more details we can guide you on how to add new block into template layout
hrasno Friendhrasno
- Join date:
- April 2008
- Posts:
- 38
- Downloads:
- 7
- Uploads:
- 6
- Thanks:
- 11
- Thanked:
- 2 times in 2 posts
June 15, 2015 at 4:39 pm #574113First thank you for a quick respond.
In default design there is two content blocks at top of the page IN THE SPOTLIGHT and MORE NEWS. I need to have four positions there instead like on image a post it.This is a place where I need those new four module places.
hrasno Friendhrasno
- Join date:
- April 2008
- Posts:
- 38
- Downloads:
- 7
- Uploads:
- 6
- Thanks:
- 11
- Thanked:
- 2 times in 2 posts
June 15, 2015 at 4:39 pm #640452First thank you for a quick respond.
In default design there is two content blocks at top of the page IN THE SPOTLIGHT and MORE NEWS. I need to have four positions there instead like on image a post it.This is a place where I need those new four module places.
hrasno Friendhrasno
- Join date:
- April 2008
- Posts:
- 38
- Downloads:
- 7
- Uploads:
- 6
- Thanks:
- 11
- Thanked:
- 2 times in 2 posts
June 15, 2015 at 4:39 pm #739127First thank you for a quick respond.
In default design there is two content blocks at top of the page IN THE SPOTLIGHT and MORE NEWS. I need to have four positions there instead like on image a post it.This is a place where I need those new four module places.
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
June 15, 2015 at 4:58 pm #574118Since as i already said above the news-home position is not a real position you cannot divide it into 4
I can suggest to add a new block like spotlight-1 below the mainnav block in this way you can have available the 4 positions
If you want to add it then edit this file templatesja_teline_vtplsmagazine-home.php and change
FROM :
<div class="t3-wrapper"> <!-- Need this wrapper for off-canvas menu. Remove if you don't use of-canvas -->
<?php $this->loadBlock('topnav') ?>
<?php $this->loadBlock('header') ?>
<?php $this->loadBlock('mainnav') ?>
<?php $this->loadBlock('mainbody-full') ?>
<?php $this->loadBlock('footer') ?>
</div>
TO :
<div class="t3-wrapper"> <!-- Need this wrapper for off-canvas menu. Remove if you don't use of-canvas -->
<?php $this->loadBlock('topnav') ?>
<?php $this->loadBlock('header') ?>
<?php $this->loadBlock('mainnav') ?>
<?php $this->loadBlock('spotlight-1') ?>
<?php $this->loadBlock('mainbody-full') ?>
<?php $this->loadBlock('footer') ?>
</div>
Here result
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
June 15, 2015 at 4:58 pm #640457Since as i already said above the news-home position is not a real position you cannot divide it into 4
I can suggest to add a new block like spotlight-1 below the mainnav block in this way you can have available the 4 positions
If you want to add it then edit this file templatesja_teline_vtplsmagazine-home.php and change
FROM :
<div class="t3-wrapper"> <!-- Need this wrapper for off-canvas menu. Remove if you don't use of-canvas -->
<?php $this->loadBlock('topnav') ?>
<?php $this->loadBlock('header') ?>
<?php $this->loadBlock('mainnav') ?>
<?php $this->loadBlock('mainbody-full') ?>
<?php $this->loadBlock('footer') ?>
</div>
TO :
<div class="t3-wrapper"> <!-- Need this wrapper for off-canvas menu. Remove if you don't use of-canvas -->
<?php $this->loadBlock('topnav') ?>
<?php $this->loadBlock('header') ?>
<?php $this->loadBlock('mainnav') ?>
<?php $this->loadBlock('spotlight-1') ?>
<?php $this->loadBlock('mainbody-full') ?>
<?php $this->loadBlock('footer') ?>
</div>
Here result
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
June 15, 2015 at 4:58 pm #739132Since as i already said above the news-home position is not a real position you cannot divide it into 4
I can suggest to add a new block like spotlight-1 below the mainnav block in this way you can have available the 4 positions
If you want to add it then edit this file templatesja_teline_vtplsmagazine-home.php and change
FROM :
<div class="t3-wrapper"> <!-- Need this wrapper for off-canvas menu. Remove if you don't use of-canvas -->
<?php $this->loadBlock('topnav') ?>
<?php $this->loadBlock('header') ?>
<?php $this->loadBlock('mainnav') ?>
<?php $this->loadBlock('mainbody-full') ?>
<?php $this->loadBlock('footer') ?>
</div>
TO :
<div class="t3-wrapper"> <!-- Need this wrapper for off-canvas menu. Remove if you don't use of-canvas -->
<?php $this->loadBlock('topnav') ?>
<?php $this->loadBlock('header') ?>
<?php $this->loadBlock('mainnav') ?>
<?php $this->loadBlock('spotlight-1') ?>
<?php $this->loadBlock('mainbody-full') ?>
<?php $this->loadBlock('footer') ?>
</div>
Here result
AuthorPostsViewing 10 posts - 1 through 10 (of 10 total)This topic contains 10 replies, has 2 voices, and was last updated by pavit 9 years, 5 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Jump to forum