Can I just delete all the php coding in the notepad and just copy from php.net a simplecopyright then save?
This is what showing on my screen :
?php
/**
------------------------------------------------------------------------
JA Nuevo template
------------------------------------------------------------------------
Copyright (C) 2004-2018 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
@license - Copyrighted Commercial Software
Author: J.O.O.M Solutions Co., Ltd
Websites:
This file may not be redistributed in whole or significant part.
------------------------------------------------------------------------
/
defined('_JEXEC') or die;
$sitename = $this->params->get('sitename');
if (!$sitename) {
$sitename = JFactory::getConfig()->get('sitename');
}
?>
<!-- BACK TOP TOP BUTTON -->
<div id="back-to-top" data-spy="affix" data-offset-top="300" class="back-to-top hidden-xs hidden-sm affix-top">
<button class="btn btn-primary" title="Back to Top"><i class="fa fa-angle-up"></i></button>
</div>
<script type="text/javascript">
(function($) {
// Back to top
$('#back-to-top').on('click', function(){
$("html, body").animate({scrollTop: 0}, 500);
return false;
});
})(jQuery);
</script>
<!-- BACK TO TOP BUTTON -->
<!-- FOOTER -->
<footer id="t3-footer" class="wrap t3-footer">
<div class="container">
<div class="row">
<?php if ($this->checkSpotlight('footnav', 'footer-1, footer-2, footer-3, footer-4')) : ?>
<!-- FOOT NAVIGATION -->
<div class="col-xs-12 col-lg-10">
<?php $this->spotlight('footnav', 'footer-1, footer-2, footer-3, footer-4') ?>
</div>
<!-- //FOOT NAVIGATION -->
<?php endif ?>
<div class="footer-logo col-xs-12 col-lg-2">
<div class="footer-logo-container">
<a href="<?php echo JURI::base(true) ?>" title="<?php echo strip_tags($sitename) ?>">
<?php echo strip_tags($sitename) ?>
</a>
</div>
</div>
</div>
</div>
<section class="t3-copyright">
<div class="container">
<div class="row">
<div class="<?php echo $this->getParam('t3-rmvlogo', 1) ? 'col-md-8' : 'col-md-12' ?> copyright <?php $this->_c('footer') ?>">
<jdoc:include type="modules" name="<?php $this->_p('footer') ?>" />
</div>
<?php if ($this->getParam('t3-rmvlogo', 1)): ?>
<div class="col-md-4 poweredby text-hide">
<a class="t3-logo-small t3-logo-light" href="http://t3-framework.org" title="<?php echo JText::_('T3_POWER_BY_TEXT') ?>"
target="_blank" <?php echo method_exists('T3', 'isHome') && T3::isHome() ? '' : 'rel="nofollow"' ?>><?php echo JText::_('T3_POWER_BY_HTML') ?></a>
</div>
<?php endif; ?>
</div>
</div>
</section>
</footer>
<!-- //FOOTER --