Mr Pascal’s fix for atahualpa333 version is perfect:
1. CHMOD 777 function.php in wp-content/themes/atahualpa333
2. Remove lines 119 and 120 in function.php
3. The code is now
118 function footer_output($footer_content) {
119 return $footer_content;
120 }
I am running WordPress on several of the websites I’ve built, and that footer has been problematic on many of them. I don’t mind giving credit for such a great open source mechanism as WordPress ot the great theme. But, the “in your face footer” just doesn’t work, too agressive.
I’m running Atahualpa version 3.4.5 on most of my sites now, and Mr Pascal’s fix has to be modified to work on it.
1. The file you need locate in 3.4.5 is “functions.php”.
Not “function php”.
2.The operative code is located on lines:
275 function footer_output($footer_content) {
276
277 $footer_content .= ‘
Powered by WordPress & the Atahualpa Theme by BytesForAll. Discuss on our WP Forum‘;
278
279 return $footer_content;
280
281}
3. You cannot remove the lines entirely or you will get a fatal error message that show up in your footer.
Remove only the link information between the ‘ ‘ on line 277.
The finished code should read:
275 function footer_output($footer_content) {
276
277 $footer_content .= ”;
278
279 return $footer_content;
280
281.}
It’s only a minor modification to Mr Pascal’s fix, and it works great.
For the person who asked about inserting his own copyright information in the footer, just place it there in html. Go to the Atahualpa “Style and edit footer area”, then to the “Footer content” area. Cold write or paste any html you want there. Text, links, images, widget areas, anything…it all works.