AbanteCart Community

eCommerce construction => Templates => Topic started by: G. O. on August 13, 2024, 10:31:23 AM

Title: How to remove Powered By: AbanteCart on v1.4.0
Post by: G. O. on August 13, 2024, 10:31:23 AM
Hello,

Without going to marketplace and download white Lebel, How to remove Powered By: AbanteCart on v1.4.0 ?
still we can edit the footer.php as in the previous versions and edit the code or not?

Title: Re: How to remove Powered By: AbanteCart on v1.4.0
Post by: Basara on August 15, 2024, 05:42:15 AM
Hello.
Yes, you can edit footer.php or your theme
Title: Re: How to remove Powered By: AbanteCart on v1.4.0
Post by: G. O. on August 15, 2024, 06:46:33 AM
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>
Title: Re: How to remove Powered By: AbanteCart on v1.4.0
Post by: Nuno Neff on August 18, 2024, 06:08:44 AM
I solved the problem just by removing from extensions/novator/storefront/view/novator/template/common/footer.tpl

Remove this and its done:
<div class="w-100 d-flex text-white text-opacity-75 my-4 flex-nowrap"><?php echo $text_project_label ?></div>
Title: Re: How to remove Powered By: AbanteCart on v1.4.0
Post by: sabrina199x on October 16, 2024, 09:57:28 PM
To remove Powered By: AbanteCart from your v1.4.0 store without downloading a white label, access the footer.php file, find the text Powered By: AbanteCart, and remove or comment it out. Save the changes and refresh your store.
Title: Re: How to remove Powered By: AbanteCart on v1.4.0
Post by: asherbonaventur on December 21, 2024, 12:03:47 AM
This is the problem I encountered when I first started using AbanteCart. I thought I could just go to footer.php and it was done, but after updating to v1.4.0, things are not the same.
Title: Re: How to remove Powered By: AbanteCart on v1.4.0
Post by: kovegan on January 13, 2025, 11:57:14 PM
Yes, you can still remove the "Powered By: AbanteCart" text in version 1.4.0 by editing the footer.php file, just as in previous versions.
Title: Re: How to remove Powered By: AbanteCart on v1.4.0
Post by: laura458 on January 14, 2025, 01:12:23 PM
couldn't find it. Plus, there are several areas to edit the footer.php file.
Title: Re: How to remove Powered By: AbanteCart on v1.4.0
Post by: MancyHenry on February 24, 2025, 03:57:11 AM
Yes, you can still edit the footer.php file in version 1.4.0 to remove the "Powered By: AbanteCart" text. Navigate to the appropriate directory in your theme files (usually under `/storefront/view/default/template/common/footer.php`) and modify or remove the relevant code. Remember to back up your file before making any changes to avoid issues.
Title: Re: How to remove Powered By: AbanteCart on v1.4.0
Post by: holeioonline on April 09, 2025, 03:47:06 AM
One thing I would like to remind you is that Before making any changes, please backup the footer.tpl file in case something goes wrong.
Title: Re: How to remove Powered By: AbanteCart on v1.4.0
Post by: Lylyamora on April 24, 2025, 02:46:10 AM
@holeioonline Thanks for the helpful reminder! Backing up the footer.tpl file before editing is really important to avoid unwanted risks.
Title: Re: How to remove Powered By: AbanteCart on v1.4.0
Post by: sherryboles219 on May 24, 2025, 03:51:32 AM
I was also looking for this thread.
Title: Re: How to remove Powered By: AbanteCart on v1.4.0
Post by: BrendaElliot on May 28, 2025, 10:15:46 AM
you can still remove the “Powered By: AbanteCart” text by editing the footer.tpl file in your template folder. Simply delete or comment out the line with <?php echo $text_powered; ?> and clear the cache afterward. However, this change may be lost after future updates unless you use a custom theme.
Title: Re: How to remove Powered By: AbanteCart on v1.4.0
Post by: salmon on May 31, 2025, 03:57:35 AM
you can still remove the “Powered By: AbanteCart” text by editing the footer.tpl file in your template folder. Simply delete or comment out the line with <?php echo $text_powered; ?> and clear the cache afterward. However, this change may be lost after future updates unless you use a custom theme.
Thank you very much for this extremely useful sharing! I just tried to delete the line “Powered By: AbanteCart” according to the instructions and it was very quick and solved the problem that I have been annoyed with for a long time.