-
AuthorPosts
-
September 22, 2008 at 8:40 pm #133607
how removing copy right
shertmann Friendshertmann
- Join date:
- September 2008
- Posts:
- 339
- Downloads:
- 0
- Uploads:
- 1
- Thanks:
- 22
- Thanked:
- 42 times in 26 posts
September 22, 2008 at 11:58 pm #271756locate in your instalation the following file
index.php
is located in the root folder of the janagya template
is something like this
yoursite/joomlainstalation/templates/janagya/index.php
inside of this document find near the line 246 the following code
<div class="copyright">
<jdoc:include type="modules" name="user3" />
<jdoc:include type="modules" name="footer" />
</div>and replace it with this
<div class="copyright">
<!--jdoc:include type="modules" name="user3" />
<jdoc:include type="modules" name="footer" /-->
</div>this code does not remove but coments the tag that call the copyright(it is better practice to not remove code when you edit it). and voila does not have the copyright
Sherlock FriendSherlock
- Join date:
- September 2014
- Posts:
- 11453
- Downloads:
- 0
- Uploads:
- 88
- Thanks:
- 221
- Thanked:
- 2478 times in 2162 posts
September 23, 2008 at 3:11 am #271773you can edit default.php(templatesja_olivinehtmlmod_footer folder):
<small><?php echo $lineone; ?> Designed by
<a href="http://www.joomlart.com/" title="Visit Joomlart.com!" target="blank">JoomlArt.com</a>.</small>shertmann Friendshertmann
- Join date:
- September 2008
- Posts:
- 339
- Downloads:
- 0
- Uploads:
- 1
- Thanks:
- 22
- Thanked:
- 42 times in 26 posts
September 23, 2008 at 4:12 am #271782well any of these two ways works the same way:D
September 23, 2008 at 5:08 am #271795Sorry but line 246 reads totaly different
where is this code you telling me in janagya:
“you can edit default.php(templatesja_olivinehtmlmod_footer folder):Code:”
I do not see it!
Thanks
September 23, 2008 at 5:09 am #271796i just need to edit the copy right!
shertmann Friendshertmann
- Join date:
- September 2008
- Posts:
- 339
- Downloads:
- 0
- Uploads:
- 1
- Thanks:
- 22
- Thanked:
- 42 times in 26 posts
September 23, 2008 at 5:41 am #271800well if you read the begin of post do you see that two diferent solutions were posted, the two of them are useful.
one editing the index.php, the other editing the default.php
inside of the folder /html/mod_footer/
the index.php is at the root of the template you haveSherlock FriendSherlock
- Join date:
- September 2014
- Posts:
- 11453
- Downloads:
- 0
- Uploads:
- 88
- Thanks:
- 221
- Thanked:
- 2478 times in 2162 posts
September 23, 2008 at 7:06 am #271811Hi mariovfx
Sorry
true link is:default.php(templatesja_nagyahtmlmod_footer folder)September 23, 2008 at 7:30 am #271818here is the code in the footer and i do not see the line” design by joolart”
<?php
/**
* @version $Id: mod_footer.php 10381 2008-06-01 03:35:53Z pasamio $
* @package Joomla
* @copyright Copyright (C) 2005 – 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/// no direct access
defined(‘_JEXEC’) or die(‘Restricted access’);global $mainframe;
$date =& JFactory::getDate();
$cur_year = $date->toFormat(‘%Y’);
$csite_name = $mainframe->getCfg(‘sitename’);if (JString::strpos(JText :: _(‘FOOTER_LINE1’), ‘%date%’)) {
$line1 = ereg_replace(‘%date%’, $cur_year, JText :: _(‘FOOTER_LINE1’));
} else {
$line1 = JText :: _(‘FOOTER_LINE1’);
}if (JString::strpos($line1, ‘%sitename%’)) {
$lineone = ereg_replace(‘%sitename%’, $csite_name, $line1);
} else {
$lineone = $line1;
}require(JModuleHelper::getLayoutPath(‘mod_footer’));
Sherlock FriendSherlock
- Join date:
- September 2014
- Posts:
- 11453
- Downloads:
- 0
- Uploads:
- 88
- Thanks:
- 221
- Thanked:
- 2478 times in 2162 posts
September 23, 2008 at 7:38 am #271820please follow link:
templates/ja_nagya/html/mod_footer folder, file default.php<blockquote>
here is the code in the footer and i do not see the line” design by joolart”<?php
/**
* @version $Id: mod_footer.php 10381 2008-06-01 03:35:53Z pasamio $
* @package Joomla
* @copyright Copyright (C) 2005 – 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/// no direct access
defined(‘_JEXEC’) or die(‘Restricted access’);global $mainframe;
$date =& JFactory::getDate();
$cur_year = $date->toFormat(‘%Y’);
$csite_name = $mainframe->getCfg(‘sitename’);if (JString::strpos(JText :: _(‘FOOTER_LINE1’), ‘%date%’)) {
$line1 = ereg_replace(‘%date%’, $cur_year, JText :: _(‘FOOTER_LINE1’));
} else {
$line1 = JText :: _(‘FOOTER_LINE1’);
}if (JString::strpos($line1, ‘%sitename%’)) {
$lineone = ereg_replace(‘%sitename%’, $csite_name, $line1);
} else {
$lineone = $line1;
}require(JModuleHelper::getLayoutPath(‘mod_footer’) );
</blockquote>that is mod_footer.php in modules/mod_footer folder
Sherlock FriendSherlock
- Join date:
- September 2014
- Posts:
- 11453
- Downloads:
- 0
- Uploads:
- 88
- Thanks:
- 221
- Thanked:
- 2478 times in 2162 posts
September 23, 2008 at 7:38 am #271821please follow link:
templates/ja_nagya/html/mod_footer folder, file default.php<blockquote>
here is the code in the footer and i do not see the line” design by joolart”<?php
/**
* @version $Id: mod_footer.php 10381 2008-06-01 03:35:53Z pasamio $
* @package Joomla
* @copyright Copyright (C) 2005 – 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/// no direct access
defined(‘_JEXEC’) or die(‘Restricted access’);global $mainframe;
$date =& JFactory::getDate();
$cur_year = $date->toFormat(‘%Y’);
$csite_name = $mainframe->getCfg(‘sitename’);if (JString::strpos(JText :: _(‘FOOTER_LINE1’), ‘%date%’)) {
$line1 = ereg_replace(‘%date%’, $cur_year, JText :: _(‘FOOTER_LINE1’));
} else {
$line1 = JText :: _(‘FOOTER_LINE1’);
}if (JString::strpos($line1, ‘%sitename%’)) {
$lineone = ereg_replace(‘%sitename%’, $csite_name, $line1);
} else {
$lineone = $line1;
}require(JModuleHelper::getLayoutPath(‘mod_footer’) );
</blockquote>that is mod_footer.php in modules/mod_footer folder
-
AuthorPosts
This topic contains 11 replies, has 3 voices, and was last updated by Sherlock 16 years, 1 month ago.
We moved to new unified forum. Please post all new support queries in our New Forum