How do you remove the footer in Atahualpa?
-
So…my site theme is Atahualpa and I’m trying to remove the “Powered by WordPress Theme by Atahualpa” in the footer. I saw in some post here that you have to remove line 660, which I probably believe is this:
<?php
function footer_output($footer_content) {
$footer_content .= ‘
Powered by WordPress · Atahualpa Theme by BytesForAll‘;
return $footer_content;
}
?>Now, whenever I remove that whole thing above, a fatal error occurs and when I remove the Atahualpa Theme by BytesForAll‘;, parse error happens. What should I remove?
- The topic ‘How do you remove the footer in Atahualpa?’ is closed to new replies.