-
AuthorPosts
-
msilac Friend
msilac
- Join date:
- October 2010
- Posts:
- 548
- Downloads:
- 2
- Uploads:
- 74
- Thanks:
- 115
- Thanked:
- 5 times in 1 posts
October 19, 2015 at 10:51 am #752156Ok, I see now first HR language. That is ok. In attachment is how a website looked before at the HR language. So, I have modules in all thre languages and I have assigned all that modules in a language that belongs to him. But I dont see that modules
msilac Friendmsilac
- Join date:
- October 2010
- Posts:
- 548
- Downloads:
- 2
- Uploads:
- 74
- Thanks:
- 115
- Thanked:
- 5 times in 1 posts
October 19, 2015 at 11:13 am #752159As I see, because of upgrading Joomla, some thing are diferent now. Logo is smaller then it need to be. Color of drop down menu is different colour then it need to be…
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
October 19, 2015 at 2:52 pm #752176I looked at your website and seems everything is working as should now, can you confirm ?
msilac Friendmsilac
- Join date:
- October 2010
- Posts:
- 548
- Downloads:
- 2
- Uploads:
- 74
- Thanks:
- 115
- Thanked:
- 5 times in 1 posts
October 19, 2015 at 3:54 pm #752183Is it logo so small because joomla upgrading? And I cant make that module “copyright” is visible…
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
October 19, 2015 at 4:01 pm #752184<em>@msilac 498309 wrote:</em><blockquote>Is it logo so small because joomla upgrading? And I cant make that module “copyright” is visible…</blockquote>
Your logo is small because it has a max-height value into template.css try to change to 60px
<blockquote>And I cant make that module “copyright” is visible</blockquote>
Did you published footer module in the right menu items ?
msilac Friendmsilac
- Join date:
- October 2010
- Posts:
- 548
- Downloads:
- 2
- Uploads:
- 74
- Thanks:
- 115
- Thanked:
- 5 times in 1 posts
October 19, 2015 at 4:20 pm #752189That module is in footer… but nothing is showed…
Logo
.logo-image .logo-img {
max-height: 60px;
}but it is the same
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
October 19, 2015 at 4:40 pm #752195You changed into the wrong file
Your layout is bit different from the original ja biz Home layout
This is your layout
This is original layout
Restore layouts and copyright will be showed again
msilac Friendmsilac
- Join date:
- October 2010
- Posts:
- 548
- Downloads:
- 2
- Uploads:
- 74
- Thanks:
- 115
- Thanked:
- 5 times in 1 posts
October 19, 2015 at 6:49 pm #752209Hm, I dont understand… when I was changed that? (for footer position)?
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
October 19, 2015 at 7:11 pm #752210<em>@msilac 498341 wrote:</em><blockquote>Hm, I dont understand… when I was changed that? (for footer position)?</blockquote>
I don’t know this i only showed differences between quickstart template and your template
msilac Friendmsilac
- Join date:
- October 2010
- Posts:
- 548
- Downloads:
- 2
- Uploads:
- 74
- Thanks:
- 115
- Thanked:
- 5 times in 1 posts
October 19, 2015 at 7:18 pm #752212Ok how to change that (because copyright module was workig fine before…)?
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
October 19, 2015 at 8:18 pm #752218<em>@msilac 498346 wrote:</em><blockquote>Ok how to change that (because copyright module was workig fine before…)?</blockquote>
In this folder templatesja_biztplsblocks you have a file named footer.php
This is actual code for it
<?php
/**
* @package T3 Blank
* @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/defined('_JEXEC') or die;
?><!-- FOOTER -->
<footer id="t3-footer" class="container t3-footer"><div class="main-container">
<div class="col-xs-9 col-sm-6 pull-left">
<?php if ($this->countModules('footer-menu')) : ?><div class="footer-menu">
<jdoc:include type="modules" name="<?php $this->_p('footer-menu') ?>" style="T3xhtml" />
</div><?php endif ?>
</footer>
<!-- //FOOTER -->This is the original code for it
<?php
/**
* @package T3 Blank
* @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/defined('_JEXEC') or die;
?><?php if ($this->countModules('back-to-top')) : ?>
<jdoc:include type="modules" name="<?php $this->_p('back-to-top') ?>" style="none" />
<?php endif ?><!-- FOOTER -->
<footer id="t3-footer" class="container t3-footer"><div class="main-container">
<!-- FOOT NAVIGATION -->
<div class="row"><div class="col-lg-3 col-md-3 col-sm-12 col-xs-12">
<div class="footer-info">
<?php if ($this->countModules('footer-info')) : ?>
<jdoc:include type="modules" name="<?php $this->_p('footer-info') ?>" style="T3xhtml" />
<?php endif ?><div class="copyright <?php $this->_c('footer') ?>">
<jdoc:include type="modules" name="<?php $this->_p('footer') ?>" />
</div>
</div></div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 footer-links">
<?php if ($this->checkSpotlight('footnav', 'footer-1, footer-2, footer-3, footer-4')) : ?>
<?php $this->spotlight('footnav', 'footer-1, footer-2, footer-3, footer-4') ?>
<?php endif ?>
</div><div class="col-lg-3 col-md-3 col-sm-12 col-xs-12 footer-subcribe">
<?php if ($this->countModules('footer-subcribe')) : ?>
<jdoc:include type="modules" name="<?php $this->_p('footer-subcribe') ?>" style="T3xhtml" />
<?php endif ?>
</div></div>
<!-- //FOOT NAVIGATION --><section class="t3-copyright ">
<div class="row"><div class="col-xs-9 col-sm-6 pull-left">
<?php if ($this->countModules('footer-menu')) : ?><div class="footer-menu">
<jdoc:include type="modules" name="<?php $this->_p('footer-menu') ?>" style="T3xhtml" />
</div>
<?php endif ?><?php if ($this->getParam('t3-rmvlogo', 1)): ?>
<div class=" poweredby">
<a class="t3-logo-small t3-logo-light" href="http://t3-framework.org" title="Powered By T3 Framework" <?php echo method_exists('T3', 'isHome') && T3::isHome() ? '' : 'rel="nofollow"' ?>
target="_blank">Powered by <strong>T3 Framework</strong></a>
</div>
<?php endif; ?>
</div><div class="col-xs-3 col-sm-6 pull-right">
<?php if ($this->countModules('head-social-footer')) : ?>
<!-- HEAD SOCIAL -->
<div class="head-social pull-right <?php $this->_c('head-social-footer') ?>">
<jdoc:include type="modules" name="<?php $this->_p('head-social-footer') ?>" style="raw" />
</div>
<!-- //HEAD SOCIAL -->
<?php endif ?><?php if ($this->countModules('languageswitcherload-footer')) : ?>
<!-- LANGUAGE SWITCHER -->
<div class="languageswitcher-block pull-right">
<jdoc:include type="modules" name="<?php $this->_p('languageswitcherload-footer') ?>" style="raw" />
</div>
<!-- //LANGUAGE SWITCHER --><?php endif ?>
</div>
</div>
</section>
</div></footer>
<!-- //FOOTER -->It was changed , if you want to restore it , copy original code from here into footer.php file and save it
msilac Friendmsilac
- Join date:
- October 2010
- Posts:
- 548
- Downloads:
- 2
- Uploads:
- 74
- Thanks:
- 115
- Thanked:
- 5 times in 1 posts
October 20, 2015 at 6:50 am #752247No,
I say it was OK before joomla upgrading like you can see in my attachment in post before. So now my module is on position footer but that not works…
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
October 20, 2015 at 7:05 am #752250<em>@msilac 498407 wrote:</em><blockquote>No,
I say it was OK before joomla upgrading like you can see in my attachment in post before. So now my module is on position footer but that not works…</blockquote>
Joomla upgrade doesn’t overrides template blocks and files , i restored original footer.php and you have now all correct positions available , publish your custom.html modules into correct positions and you will see it working fine
This thread is closed because title is referring to multilanguage problem that was solved , if you need help with other problems open a new thread
Best regards
-
AuthorPosts
This topic contains 28 replies, has 3 voices, and was last updated by pavit 9 years, 2 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum