Page 1 of 1

"text_powered" at the bottom of my website

Posted: Wed Feb 25, 2015 12:58 am
by dm5400
I have version 2.0.1.1. I followed the directions and have deleted the "powered by" in my footer file and saved. Now, "text_powered" is at the bottom left on my website. How can I get that off? I have searched all the footer files and this does not show up in any of them. Thanks!

Re: "text_powered" at the bottom of my website

Posted: Wed Feb 25, 2015 11:05 am
by BrettMW
Right click it, "Inspect Element", look at the page source and match it up with the footer template and see where it's coming from.

Re: "text_powered" at the bottom of my website

Posted: Wed Feb 25, 2015 12:25 pm
by yuno
in default 2.0

opencart-2011\catalog\language\english\common\footer.php

Code: Select all

$_['text_powered']      = 'Powered By <a href="http://www.opencart.com">OpenCart</a><br /> %s &copy; %s';

Re: "text_powered" at the bottom of my website

Posted: Wed Feb 25, 2015 9:32 pm
by dm5400
When I right click to view the source, I see this:

<div id="bottom">
<p class="container">text_powered</p>
</div>


I cannot find this anywhere in my footer files. Any suggestions?

As for
\catalog\language\english\common\footer.php
I already took that out prior to installing my new theme, but "text_powered" still shows up on the bottom.

Re: "text_powered" at the bottom of my website

Posted: Thu Feb 26, 2015 5:31 am
by dm5400
My theme support gave me a custom ccs code and it hides that unwanted text. It's not from their theme but somewhere in the OpenCart files.

Re: "text_powered" at the bottom of my website

Posted: Thu Feb 26, 2015 10:34 am
by yuno
dm5400 wrote:When I right click to view the source, I see this:

<div id="bottom">
<p class="container">text_powered</p>
</div>
are you in the footer.tpl?

opencart-2011\catalog\view\theme\default\template\common\footer.tpl

try change

Code: Select all

 <div id="bottom">
 <p class="container">text_powered</p>
 </div>
to

Code: Select all

 <div id="bottom">
 <p class="container"><?php echo $powered; ?></p>
 </div>