AbanteCart Community

Shopping Cart Operations => Support => Topic started by: CoolSurfer on December 30, 2015, 05:39:53 AM

Title: How ro remove Contribute and Powered by
Post by: CoolSurfer on December 30, 2015, 05:39:53 AM
How ro remove Contribute and Powered by.

I can remove from php or css file if guided a bit of the line no.

Regards
Title: Re: How ro remove Contribute and Powered by
Post by: llegrand on December 30, 2015, 10:12:36 AM
Cool Surfer you want to work too hard here!

Just go to the Design > Layout  find the block at the bottom of the page and disable OR delete the block.

You should check EACH PAGE in the design and adjust as you wish. 
Title: Re: How ro remove Contribute and Powered by
Post by: abantecart on December 30, 2015, 01:29:08 PM
Whitelabel extension will help you with removing powered by or set custom text

http://marketplace.abantecart.com/whitelabel-abantecart-remove-labels-from-footer

Title: Re: How ro remove Contribute and Powered by
Post by: llegrand on December 30, 2015, 02:46:06 PM
Abantecart is correct -  sorry I forgot about Whitelabel -  it also is an easy way to edit the email footer to your desired message.

One thing to remember with Abantecart -  try not to edit the coding whenever possible as it makes it more difficult (and time consuming) when version upgrade comes out.  So  Extensions are a much better way to avoid that - just check your extension version to be sure it works on the Abantecart Verison you are upgrading to.

cheers
Lee

Title: Re: How ro remove Contribute and Powered by
Post by: CoolSurfer on December 30, 2015, 10:18:08 PM
Abantecart is correct -  sorry I forgot about Whitelabel -  it also is an easy way to edit the email footer to your desired message.

One thing to remember with Abantecart -  try not to edit the coding whenever possible as it makes it more difficult (and time consuming) when version upgrade comes out.  So  Extensions are a much better way to avoid that - just check your extension version to be sure it works on the Abantecart Verison you are upgrading to.

cheers
Lee

too late my friend  :D  ,
i already searched for the text in windows explorer and surprisingly it searched and showed me three lang files. i edited one of them which i thought was most significant, didnt remove the code but changed ahref thing to my cart, but still nothing has ben changed. Is it possible i need to refreshthe cache? where?

Title: Re: How ro remove Contribute and Powered by
Post by: llegrand on December 30, 2015, 10:46:02 PM
several places to clear cache (especially important when you are "developing" your site.
1.Cache within AbanteCart -  System > Cache

2. Browser Cache - Cntl F5 often works or clear cache usually within the tools of the browser of choice, or check on a different browser you don't use AFTER clearing System Cache

 


Title: Re: How ro remove Contribute and Powered by
Post by: CoolSurfer on January 05, 2016, 09:26:47 AM
Done storefront>controller/common/footer.php

Code: [Select]
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://dahili.net>Dahili Net</a> ';



original  name and url crypted in function


function project_base() {
   $base = 'PGEgaHJlZj0iaHR0cDovL3d3dy5hYmFudGVjYXJ0LmNvbSIgb25jbGljaz0id2luZG93Lm9wZW4odGhpcy5ocmVm';
   $base .= 'KTtyZXR1cm4gZmFsc2U7IiB0aXRsZT0iSWRlYWwgT3BlblNvdXJjZSBFLWNvbW1lcmNlIFNvbHV0aW9uIj5BYmFudGVDYXJ0PC9hPg==';
   return base64_decode($base);
}

From <http://forum.abantecart.com/index.php/topic,134.0.html>