Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • Robin Friend
    #199058

    i want to remove the Ja Teline logo and the copyright info from the footer. Also, I want to edit the links. How do I do this?

    pavit Moderator
    #539777

    Hi

    About the t3 logo it can be removed by backend

    Copyright info can be removed purchasing a Ja Copyright removal license

    <blockquote>

    JATC Standard / Personal members need to purchase copyright removal to change the footer notice but cannot rebrand the product / file info, whereas, Developer members are free to remove copyright or rebrand the products.

    With Copyright removal you can remove our footer “Designed by JoomlArt.com” and changed it to “Designed/Powered by YourCompany”.

    The Copyright Removal fee structure is as follows:

    Copyright Removal for 01 domain: USD40
    Copyright Removal for 02 domain: USD70
    Copyright Removal for 03 domain: USD90

    </blockquote>

    <blockquote> I want to edit the links</blockquote>

    Please explain better what you want to edit exactly

    Robin Friend
    #539780

    I did purchase the Ja Copyright removal license. I want to remove all text, images, links in the footer and replace it with my own.

    pavit Moderator
    #539782

    Take a look HERE

    Robin Friend
    #539785

    I followed those instructions and it did not work. The Ja teline logo is still there as well as the Joomla! is Free Software released under the GNU General Public License.

    Here is my code for footer. php:

    <?php

    defined(‘_JEXEC’) or die;
    // Layout configuration
    $layout_configf = json_decode (‘{
    “have_footlogo”: {
    “default” : [ “span3” , “span9” , “span9” , “span3”],
    “wide” : [],
    “xtablet” : [ “span4” , “span8”],
    “tablet” : [ “span12” , “span12 spanfirst” ]
    },
    “no_footlogo”: {
    “default” : [ “span12”, “span8” , “span4”],
    “wide” : [“span12”],
    “xtablet” : [“span12”],
    “tablet” : [ “span12” ]
    }
    }’);
    // positions configuration
    $footlogo = ‘footlogo’;
    $footer = ‘footer’;

    // Detect layout
    if ($this->countModules($footlogo)) {
    $layoutf = “have_footlogo”;
    } else{
    $layoutf = “no_footlogo”;
    }
    $layoutf = $layout_configf->$layoutf;
    $colf = 0;
    ?>

    <!– FOOTER –>
    <footer id=”t3-footer” class=”wrap container”>
    <div class=”t3-footer”>

    <!– FOOT NAVIGATION –>
    <?php if ($this->checkSpotlight(‘footnav’, ‘footer-1, footer-2’)) : ?>
    <?php
    $this->spotlight (‘footnav’, ‘footer-1, footer-2’, array(
    ‘footer-1’ => array(
    ‘default’ => ‘span8’,
    ‘tablet’ => ‘span8’,
    ‘xtablet’ => ‘span8’
    ),
    ‘footer-2’ => array(
    ‘default’ => ‘span4’,
    ‘tablet’ => ‘span4’,
    ‘xtablet’ => ‘span4’
    ),

    )
    );
    ?>
    <?php endif; ?>
    <!– //FOOT NAVIGATION –>

    <section class=”t3-copyright”>
    <div class=”row-fluid”>
    <?php if ($this->countModules(“$footlogo”)) : ?>
    <div class=”<?php echo $this->getClass($layoutf, $colf) ?><?php $this->_c($footlogo)?>” id=”ja-footlogo” <?php echo $this->getData ($layoutf, $colf++) ?>>
    <jdoc:include type=”modules” name=”<?php $this->_p($footlogo) ?>” style=”raw”/>
    </div>
    <?php endif; ?>
    <div class=”<?php echo $this->getClass($layoutf, $colf) ?>” <?php echo $this->getData ($layoutf, $colf++) ?>>

    <?php if($this->countModules(‘footnav or backtotop’)) : ?>
    <div class=”row-fluid ja-footnav”>
    <?php
    $footnavspan = ”;
    $backtotopspan = ”;
    if($this->countModules(‘footnav and backtotop’)){
    $footnavspan = ‘span10 ‘;
    $backtotopspan = ‘span2 ‘;
    }else{
    $footnavspan = ‘span12 ‘;
    $backtotopspan = ‘span12 ‘;
    }
    ?>

    <?php if($this->countModules(‘footnav’)) : ?>
    <div class=”<?php echo $footnavspan;?><?php $this->_c(‘footnav’)?>”>
    <jdoc:include type=”modules” name=”<?php $this->_p(‘footnav’) ?>” style=”raw” />
    </div>
    <?php endif; ?>

    <?php if($this->countModules(‘backtotop’)) : ?>
    <div class=”<?php echo $backtotopspan;?><?php $this->_c(‘backtotop’)?>”>
    <jdoc:include type=”modules” name=”<?php $this->_p(‘backtotop’) ?>” style=”raw” />
    </div>
    <?php endif; ?>
    </div>
    <?php endif; ?>

    <div class=”row-fluid”>
    <div class=”<?php echo $this->getClass($layoutf, $colf) ?> copyright<?php $this->_c($footer)?>” <?php echo $this->getData ($layoutf, $colf++) ?>>
    <jdoc:include type=”modules” name=”<?php $this->_p($footer) ?>” />
    </div>
    <?php if($this->getParam(‘t3-rmvlogo’, 1)): ?>
    <div class=”<?php echo $this->getClass($layoutf, $colf) ?> poweredby clearfix” <?php echo $this->getData ($layoutf, $colf++) ?>>
    <a class=”t3-logo t3-logo-light pull-right” href=”http://t3-framework.org” target=”_blank” <?php echo method_exists(‘T3’, ‘isHome’) && T3::isHome() ? ” : ‘rel=”nofollow”‘ ?>> <strong></strong></a>

    </div>
    <?php endif; ?>
    </div>
    </div>
    </div>
    </section>
    </div>
    </footer>
    <!– //FOOTER –>

    pavit Moderator
    #539830

    Hi

    If you want to be helped then as i already asked in another post send me via PM a super user account for your backend.

    Robin Friend
    #539875

    Hi,

    I would like to do it myself. Can you please provide instructions instead?

    pavit Moderator
    #539877

    <em>@rwold 433525 wrote:</em><blockquote>Hi,

    I would like to do it myself. Can you please provide instructions instead?</blockquote>

    We provide instructions on templates issues , here there is no template issues but what you need is already described into documentation, If you want to do for yourself then start to investigate where you failed with the appropriate browsers plugins.

    Robin Friend
    #539966

    I unpublished the footer logo module. Now I just need to find a way to remove “Joomla! is Free Software released under the GNU General Public License.”

    Here is the code for the mod_footer default.php file:
    <?php

    // no direct access
    defined(‘_JEXEC’) or die;
    ?>
    <div class=”module”>
    <small><?php echo $lineone; ?>
    <small><?php echo JText::_( ‘MOD_FOOTER_LINE2’ ); ?></small>
    </div>

    Would you please instruct me on how to remove it?

    pavit Moderator
    #539968

    Open languageen-GBen-GB.mod_footer.ini

    Change MOD_FOOTER_LINE2 in this way

    MOD_FOOTER_LINE2=""

    Robin Friend
    #539974

    I don’t have a en-GB.mod_footer.ini.

    All I have are these two:

    en-GB.tpl_ja_teline_iv_t3.ini
    en-GB.tpl_ja_teline_iv_t3.sys.ini

Viewing 11 posts - 1 through 11 (of 11 total)

This topic contains 11 replies, has 2 voices, and was last updated by  Robin 9 years, 10 months ago.

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