Hello guys!
For those who would like to edit the code correct way here is the methods:
To remove Abantecart from right bottom of pages use the below
stgorefront>controller> common> footer.php
========================================================================
change line
$this->data['text_project_label'] = $this->language->get('text_powered_by') . ' 'project_base() ;
to
$this->data['text_project_label'] = $this->language->get('text_powered_by') . ' <a href=http://www.yourwebsite.com>Your Company Name</a> ';
===========================================================================
to remove the same from emails
Storefront>view>default>template>mail>order_confirm.tpl
remove the line after this , low down remove line no 141 - remove below
Code: [Select]
<?php echo $text_project_label; ?>
should look like this after the change
Code: [Select]
<td class="align_center"
style="font-size: 10px; border-top: 1px solid #069; text-decoration: none; color: #374953;">
<a href="<?php echo $store_url; ?>"
style="color: #069; font-weight: bold; text-decoration: none;"><?php echo $store_name; ?></a>
</td>
</tr>
style="color: #069; font-weight: bold; text-decoration: none;"><?php echo $store_name; ?></a>