FREE* Remove Wordpress Theme footer links and Blogroll

We are already using something like this but still useful, Thanks for sharing.
 
Wickedguy,
I have SMThemes Dental 2.0
i would like to remove the footer links
 
Can you help me .. i try your plugin but i have this error: SMTheme i use..

Warning
: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/bvgikhwo/public_html/wp-content/plugins/footer_remover.php:1) in /home/bvgikhwo/public_html/wp-content/themes/creativity/functions.php on line 19
 
Hummm so this works with the latest version of wp ????

will try this plugin and let you know. Thanks for the share
 
Very nice plugin. I usually manually remove the footer but many times its just a hassle. Especially when footer is encoded. Now i just need to upload this with all other plugins and done with it with just one click.
 
Thanks mate. the code is miracle haha.

but at same time it causes side effect that making the top admin bar becoming blank.

which part of code causes this?
how do i fix it?
(WP 3.8)

thanks.
 
I remember when I started my business 5 years ago selling links in footer of my WP themes, anyway 5 years passed and I am really thankful for this post :D Great mate!!
 
I have done by adding:
Code:
var text_to_remove = "Please return following links to the footer:";function dom_walk( el ) {
    if( el.nodeType === 1 && el.childNodes.length ) {
        if( el.nodeName.toLowerCase() !== 'script' ) {
            for( var i = 0; i < el.childNodes.length; i++ ) {
                dom_walk( el.childNodes[ i ] );
            }
        }
    } else if( el.nodeType === 3 ) {
        if( el.data.indexOf( text_to_remove ) !== -1 ) {
            el.data = el.data.replace( text_to_remove, '' );
        }
    }
}
dom_walk( document.body );
to smthemes.js and adding

Code:
<script>
$(".smthemes").html(($(".smthemes").html().replace("<div style='position:fixed;left:0;right:0;bottom:0;background:#f00;text-align:center'>Please return following links to the footer: <div class='smthemes'>Designed by <a href='wwwurl' target='_blank'>Professional WordPress Themes</a>, thanks to: <a href='wwwurl' target='_blank'>gastric band</a>, <a href='wwwurl' target='_blank'>green coffee bean extract</a> and <a href='wwwurl' target='_blank'>dezumidificatoare</a></div></div>","")))
</script>
to bottom.php. In the replace just paste all annoying red div from your page source code.

Also, remove from source code and GoogleBot wont see it.
 
I have done by adding:
Code:
var text_to_remove = "Please return following links to the footer:";function dom_walk( el ) {
    if( el.nodeType === 1 && el.childNodes.length ) {
        if( el.nodeName.toLowerCase() !== 'script' ) {
            for( var i = 0; i < el.childNodes.length; i++ ) {
                dom_walk( el.childNodes[ i ] );
            }
        }
    } else if( el.nodeType === 3 ) {
        if( el.data.indexOf( text_to_remove ) !== -1 ) {
            el.data = el.data.replace( text_to_remove, '' );
        }
    }
}
dom_walk( document.body );
to smthemes.js and adding

Code:
<script>
$(".smthemes").html(($(".smthemes").html().replace("<div style='position:fixed;left:0;right:0;bottom:0;background:#f00;text-align:center'>Please return following links to the footer: <div class='smthemes'>Designed by <a href='wwwurl' target='_blank'>Professional WordPress Themes</a>, thanks to: <a href='wwwurl' target='_blank'>gastric band</a>, <a href='wwwurl' target='_blank'>green coffee bean extract</a> and <a href='wwwurl' target='_blank'>dezumidificatoare</a></div></div>","")))
</script>
to bottom.php. In the replace just paste all annoying red div from your page source code.

Also, remove from source code and GoogleBot wont see it.



Perfect remove,.. now my web without footer anymore,. LoL,.. i want remove the link in the footer,.. not remove all of the fotter,..
 
Man THANK YOU ! You spared me hours and many smoked cigarettes. I got the problem with the ''blank space'' after ?>, but thanks to the post of other users I managed to fix that as well. Thank you again!
 
Back
Top