Viewing 13 posts - 16 through 28 (of 28 total)
  • Author
    Posts
  • msilac Friend
    #752156

    Ok, 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 Friend
    #752159

    As 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 Moderator
    #752176

    I looked at your website and seems everything is working as should now, can you confirm ?

    msilac Friend
    #752183

    Is it logo so small because joomla upgrading? And I cant make that module “copyright” is visible…

    pavit Moderator
    #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 Friend
    #752189

    That module is in footer… but nothing is showed…

    Logo

    .logo-image .logo-img {
    max-height: 60px;
    }

    but it is the same

    pavit Moderator
    #752195

    You 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 Friend
    #752209

    Hm, I dont understand… when I was changed that? (for footer position)?

    pavit Moderator
    #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 Friend
    #752212

    Ok how to change that (because copyright module was workig fine before…)?

    pavit Moderator
    #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 Friend
    #752247

    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…

    pavit Moderator
    #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

Viewing 13 posts - 16 through 28 (of 28 total)

This topic contains 28 replies, has 3 voices, and was last updated by  pavit 9 years ago.

We moved to new unified forum. Please post all new support queries in our New Forum