-
AuthorPosts
-
vladocz Friend
vladocz
- Join date:
- June 2014
- Posts:
- 7
- Downloads:
- 0
- Uploads:
- 0
- Thanks:
- 3
- Thanked:
- 1 times in 1 posts
August 1, 2014 at 5:43 am #200168Hello, I´m from czech and need to add support for czech special characters (ěščřžýáíé), where can I add support for extended-latin? which file I need to edit ? Thank you.
vladocz Friendvladocz
- Join date:
- June 2014
- Posts:
- 7
- Downloads:
- 0
- Uploads:
- 0
- Thanks:
- 3
- Thanked:
- 1 times in 1 posts
August 3, 2014 at 3:20 pm #544333OK, I solved it by download font Roboto with czech characters and replace original files.
Second question is about footer. modules position 20, 21, 22 and 23 are only visible on mainpage, but I have chosen to display modules on All pages. This is feature? It is possible to have these modules on all pages?
Thank you.
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
August 3, 2014 at 4:27 pm #544336Hi
<blockquote>modules position 20, 21, 22 and 23 are only visible on mainpage, but I have chosen to display modules on All pages. This is feature? It is possible to have these modules on all pages? </blockquote>
You should verify that all other pages are using a layout where these positions are available
For instance if default style has not these positions and your Home is using not the default style but one where these positions are available then you need to have the style where these positions are available as default style.
Hope was clear
vladocz Friendvladocz
- Join date:
- June 2014
- Posts:
- 7
- Downloads:
- 0
- Uploads:
- 0
- Thanks:
- 3
- Thanked:
- 1 times in 1 posts
August 4, 2014 at 7:52 pm #544518Thanks for reply. I tried to edit this confuguration and didn´t understand to this. If I send you acces and URL to my web, can you solve it? I solved everything, but mentioned modules I see only on mainlage.
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
August 4, 2014 at 8:10 pm #544522Hi
Yes send me it via PM
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
August 5, 2014 at 7:04 am #544578Hi
I accessed your website
your Homepage is using the template style named Ja-Brisk-Home the layout for Ja_Brisk-Home includes the positions 20-21-22-23
Your other pages are using ( because it is assigned as default ) the Ja_Brisk-Default layout where these positions are not available.
So if you want to have these positions into the Default layout you should edit the file templatesja_brisktplsdefault.php and add these positions in this way
<head>
<jdoc:include type="head" />
<?php $this->loadBlock ('head') ?>
</head><body>
<?php $this->loadBlock ('header') ?>
<?php $this->loadBlock ('slideshow') ?>
<?php $this->loadBlock ('masshead') ?>
<?php $this->loadBlock ('spotlight-1') ?>
<?php $this->loadBlock ('mainbody') ?>
<?php $this->loadBlock ('spotlight-2') ?>
<?php $this->loadBlock ('spotlight-3') ?>
<?php $this->loadBlock ('spotlight-6') ?> <--Add this block
<?php $this->loadBlock ('navhelper') ?>
<?php $this->loadBlock ('footer') ?>
</body>
In this way your modules published in these positions will be available on all your website pages.
1 user says Thank You to pavit for this useful post
vladocz Friendvladocz
- Join date:
- June 2014
- Posts:
- 7
- Downloads:
- 0
- Uploads:
- 0
- Thanks:
- 3
- Thanked:
- 1 times in 1 posts
August 5, 2014 at 4:05 pm #544670You are absolutely right. Thank you for solving this.
vladocz Friendvladocz
- Join date:
- June 2014
- Posts:
- 7
- Downloads:
- 0
- Uploads:
- 0
- Thanks:
- 3
- Thanked:
- 1 times in 1 posts
August 5, 2014 at 4:33 pm #544681I found another one question. Which value in which file I need to edit for make main menu wider?
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
August 5, 2014 at 4:55 pm #544688<em>@vladocz 439699 wrote:</em><blockquote>I found another one question. Which value in which file I need to edit for make main menu wider?</blockquote>
Hi
Open this file templatesja_brisktplsblocksheader.php
now you have
<!-- LOGO -->
<div class="ja-logo span2">
<div class="logo logo-<?php echo $logotype ?>">
<h1>
<a href="<?php echo JURI::base(true) ?>" title="<?php echo strip_tags($sitename) ?>"<?php echo $logoimage ?>>
<span><?php echo $sitename ?></span>
</a>
<small class="site-slogan hidden-phone"><?php echo $slogan ?></small>
</h1>
</div>
</div>
<!-- //LOGO --><div class="ja-mainnav span8">
<!-- MAIN NAVIGATION -->
<div id="t3-mainnav" class="t3-mainnav">
<div class="navbar">
<div class="navbar-inner"><button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button><div class="nav-collapse collapse<?php echo $this->getParam('navigation_collapse_showsub', 1) ? ' always-show' : '' ?>">
<?php if ($this->getParam('navigation_type') == 'megamenu') : ?>
<?php $this->megamenu($this->getParam('mm_type', 'mainmenu')) ?>
<?php else : ?>
<jdoc:include type="modules" name="<?php $this->_p('mainnav') ?>" style="raw" />
<?php endif ?>
</div>
</div>
</div>
</div>
<!-- //MAIN NAVIGATION -->
</div><div class="span2">
<?php if ($this->countModules('head-search')) : ?>
<div class="ja-search<?php $this->_c('head-search')?>">
<!-- HEAD SEARCH -->
<div class="head-search">
<jdoc:include type="modules" name="<?php $this->_p('head-search') ?>" style="raw" />
</div>
</div>
<!-- //HEAD SEARCH -->
<?php endif ?>
Change it to
<!-- LOGO -->
<div class="ja-logo span2">
<div class="logo logo-<?php echo $logotype ?>">
<h1>
<a href="<?php echo JURI::base(true) ?>" title="<?php echo strip_tags($sitename) ?>"<?php echo $logoimage ?>>
<span><?php echo $sitename ?></span>
</a>
<small class="site-slogan hidden-phone"><?php echo $slogan ?></small>
</h1>
</div>
</div>
<!-- //LOGO --><div class="ja-mainnav span10">
<!-- MAIN NAVIGATION -->
<div id="t3-mainnav" class="t3-mainnav">
<div class="navbar">
<div class="navbar-inner"><button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button><div class="nav-collapse collapse<?php echo $this->getParam('navigation_collapse_showsub', 1) ? ' always-show' : '' ?>">
<?php if ($this->getParam('navigation_type') == 'megamenu') : ?>
<?php $this->megamenu($this->getParam('mm_type', 'mainmenu')) ?>
<?php else : ?>
<jdoc:include type="modules" name="<?php $this->_p('mainnav') ?>" style="raw" />
<?php endif ?>
</div>
</div>
</div>
</div>
<!-- //MAIN NAVIGATION -->
</div><div class="span">
<?php if ($this->countModules('head-search')) : ?>
<div class="ja-search<?php $this->_c('head-search')?>">
<!-- HEAD SEARCH -->
<div class="head-search">
<jdoc:include type="modules" name="<?php $this->_p('head-search') ?>" style="raw" />
</div>
</div>
<!-- //HEAD SEARCH -->
<?php endif ?>1 user says Thank You to pavit for this useful post
-
AuthorPosts
This topic contains 10 replies, has 2 voices, and was last updated by vladocz 10 years, 5 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum