• Anyone knows how to remove goddady free hosting banner?
    I used the :
    <style>
    #conash3D0
    {
    display:none;
    }
    </style>

    In the welcome.html ,and it worked.
    BUT!!
    When i run wp it banner is back(obviously),am supposed to edit index.php right? what do i change in the code?

Viewing 8 replies - 1 through 8 (of 8 total)
  • There might be something in here that could help.

    http://wordpress.org/search/godaddy+free+banner?forums=1

    Thread Starter georgegg

    (@georgegg)

    i added the

    <style>
    #conash3D0
    {
    display:none;
    }
    </style>

    on top of the index.php and banners didn’t appeared in the wordpress index of my website but when i logged in all the other pages of wordpress had the banner of godday again.
    Is there a way to stop it from showing the banner in every single page?
    I tried to put the above code on other phps but it didn’t worked ,it showed me an error.
    I read the ClaytonJames suggestions didn’t saw something that could help this situation,any ideas?

    Thread Starter georgegg

    (@georgegg)

    so none knows how to block/remove godaddy’s banner with php files in wordpresss?

    Take the code below and stick it in a plugin, this removes it on all the sites along with the script-loader.php hack on the forum you should be good to go.

    function godaddy_style(){
    ?>
    <style type=”text/css”>
    #conash3D0
    {
    display:none;
    }
    </style>
    <?php
    }
    add_action(‘admin_footer’,’godaddy_style’);
    add_action(‘wp_footer’,’godaddy_style’);
    add_action(‘login_head’,godaddy_style’);

    Please note that the free hosting has advertisements to support the cost of the product. We do offer the option to upgrade your hosting to paid using these instructions:
    http://community.godaddy.com/help/article/9?isc=smwpfor

    Alicia
    GoDaddy.com

    Good to see GoDaddy monitors these forums. I know the reason the ads had to be fixed because the bug with the WordPress Admin Dashboard.

    http://wordpress.org/search/godaddy+admin+free?forums=1

    191 hits

    GRX3,

    I had a question it seems there a little bit missing from your php script of code you posted such as a opening or closing tag of php… could you send me this script which has the finished or proper tags and where they should actually be at? Only because I am still learning the syntax and framework that WordPress works off of regarding action hooks and i bearly got to glance about what they are for 2 mins.

    You posted:

    function godaddy_style(){
    ?>
    <style type=”text/css”>
    #conash3D0
    {
    display:none;
    }
    </style>
    <?php
    }
    add_action(‘admin_footer’,’godaddy_style’);
    add_action(‘wp_footer’,’godaddy_style’);
    add_action(‘login_head’,godaddy_style’);

    GRX3,

    also once it would used with this script in a plugin for WP “as is” it just gives me these errors at top:

    Warning: Cannot modify header information – headers already sent by (output started at /home/content/p/d/n/XXXXX/html/mywebsitedomain/wp-content/plugins/adremoverCSS.php:12) in /home/content/p/d/n/XXXXX/html/mywebsitedomain/wp-includes/functions.php on line 830

    AND

    arning: Cannot modify header information – headers already sent by (output started at /home/content/p/d/n/XXXXX/html/mywebsitedomain/wp-content/plugins/adremoverCSS.php:12) in /home/content/p/d/n/XXXXX/html/mywebsitedomain/wp-includes/functions.php on line 831

    Any suggestions here at this point?

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Removing Godaddy Banner’ is closed to new replies.