• lynx43

    (@lynx43)


    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?

Viewing 15 replies - 1 through 15 (of 25 total)
  • figaro

    (@figaro)

    There should be a footer.php file in the theme…open it and edit out what you want.

    The function footer_output is called in many different places in the Atahualpa framework, so simply deleting it will cause many problems as you say. All you have to do is edit (clear) the information within the ” marks. ie:
    <?php
    function footer_output($footer_content){
    $foother_content .= ;
    return….

    I would like to keep the ‘Powered by WordPress & Atahualpa WP Theme’ but remove the deal about Bytes for All and now with tutorial and support!

    within functions.php changed to:

    function footer_output($footer_content) {
    $footer_content .= ‘<strong><br />Powered by <a href="http://wordpress.org/">WordPress</a> & the <a href="http://wordpress.bytesforall.com/" title="Customizable WordPress themes">Atahualpa WP Theme</a></strong>‘;
    return $footer_content;
    }

    … but got a syntax error and no website. Reloaded functions.php. What can I do to adjust the footer?

    I am interested on this matter to.

    I gladly accept the
    “Powered by WordPress & the Atahualpa WP Theme”

    even the
    “by BytesForAll. “

    but come on!
    “Now with Tutorials & Support”

    is not recognition, it’s advertisement ;(

    Hi,

    You need to edit the footer.php file inside the theme folder and then remove the link code which you want.

    Thanks,

    Shane G.

    I did everything you people said and I still have the stupid footer. I even deleted the whole footer.php file and it’s still there. Help?!

    Looking around the Atahualpa forum, there were answers like

    Made a donation and gained access to the gold forum…

    If not, there is no answer.

    WTF?!
    😐

    It’s not perfect ……but just change the font to the background font…. then you can’t see it. if it’s white just change the font in the footer to #ffffff

    You said it Paulyt, not pretty but does the trick πŸ˜‰
    Thanks, i didn’t see that comming

    Anyway, we should be able to edit that part on our blog.

    I found the solution:

    1) Open themes/atahualpa/functions.php
    2) go to line 660
    3) DO NOT REMOVE THE WHOLE LINE! Instead replace it with:
    $footer_content .= '<br />';
    4) Alternatively you can replace with your own html as shown
    here
    5) Save file
    6) Magic πŸ™‚

    @focuswebtech
    Many thanks! It worked πŸ˜‰

    About the number line, it may change but it’s easy if we search for the words
    $footer_content .=

    Thanks again and keep the magic going.

    I removed everything but the following (as suggested above):
    $footer_content .=’
    ;

    but now I can’t even log in to my admin page at all and I get the following error:

    Parse error: syntax error, unexpected T_STRING in /home/interi14/public_html/wp-content/themes/atahualpa342/functions.php on line 145

    How can I fix this when I can’t even get on to my admin page?

    It’s me again. I went into my server and I am able to edit the functions.php content I deleted. Does anyone know the full code for the following:
    $footer_content.=’

    I would like to put it back so I can stop getting that syntax error I caused by deleting everything after it. (All I was trying to do was delete the WordPress footer, but I’ll live with it if it means I can get my site back up again.) Help!

    Thanks!

    Got it to work! Read someone else’s posting and it works finally!

    Thank you focuswebtech!

    It worked. Again, Ark74 states, not necessarily on line 660…

    Very helpful.

Viewing 15 replies - 1 through 15 (of 25 total)
  • The topic ‘How do you remove the footer in Atahualpa?’ is closed to new replies.