Remove Footer Links from newwpthemes

Hey just open style.css, find footer2 or something what the div id used for that link to appear. there change the font size to 0, thats all.


example:



#footer2 {
color: #2B2B2B;
font-size: 0px; <-----
text-align: center;
padding: 10px;
}


here after links appears no more.
 
changing the footer color to black or hiding it is bad for seo.

You can PM me or reply here if you need help removing footer links. I've just removed mine =)
 
small_brat

can you please let me know how you did it cause i just tried it on the Nively theme but wasn't able to.

thanks
 
send me your footer.php and functions.php

and what you want to have on your footer
 
Kind of offtopic, but have anyone got themself in any kind of trouble when removed those links on these wpthemes or any other website template which is under Creative Commons license?
 
Any 1 know of a new decryption tool out there. Small brat what are you using to decode it's better then mass sending you my files.
 
look for base64 encryption in functions.php and footer.php

not sure if it is still the same (there should be more then one crypted)
 
An even easier solution:
Ditch that theme and use a clean theme.
Theme coders using base64 do not have your interests at heart.
You don't know what other crap is in there.
 
Hey just open style.css, find footer2 or something what the div id used for that link to appear. there change the font size to 0, thats all.


example:



#footer2 {
color: #2B2B2B;
font-size: 0px; <-----
text-align: center;
padding: 10px;
}


here after links appears no more.

Amazing.., after 4 hours of recoding/decoding/reinstalling/googling/decoding recoding again/ reinstaling and giving up .. all i had to do is change number '9' to number'0' in .css --- GENIUS!
 
Hello:
I have look at you method to how to remove that footer copyright info for wordpress!
I have try for my wordpress, But It's can not work it!
My functions.php: (176 line)
PHP:
function wp_initialize_the_theme_finish() { $uri = strtolower($_SERVER["REQUEST_URI"]); if(is_admin() || substr_count($uri, "wp-admin") > 0 || substr_count($uri, "wp-login") > 0 ) { /* */ } else { $l = 'Download <a href="">Free WordPress Themes</a> | Thanks to <a href="">Themes Gallery</a>, <a href="">Premium Free WordPress Themes</a> and <a href="">Free Premium WordPress Themes</a>'; $f = dirname(__file__) . "/footer.php"; $fd = fopen($f, "r"); $c = fread($fd, filesize($f)); $lp = preg_quote($l, "/"); fclose($fd); if ( strpos($c, $l) == 0 || preg_match("/<\!--(.*" . $lp . ".*)-->/si", $c) || preg_match("/<\?php([^\?]+[^>]+" . $lp . ".*)\?>/si", $c) ) { wp_initialize_the_theme_message(); die; } } } wp_initialize_the_theme_finish();

My footer:
PHP:
    </div>
        <div id="footer">Copyright © <a href="<?php bloginfo('home'); ?>"><strong><?php bloginfo('name'); ?></strong></a>  - <?php bloginfo('description'); ?></div>
        <?php // This theme is released free for use under creative commons licence.
        <div id="footer2">Powered by <a href=""><strong>WordPress</strong></a> | Download <a href="">Free WordPress Themes</a> | Thanks to <a href="">Themes Gallery</a>, <a href="">Premium Free WordPress Themes</a> and <a href="">Free Premium WordPress Themes</a></div>

</div>
<?php
     wp_footer();
    echo get_theme_option("footer")  . "\n";
?>
</body>
</html>


Could you help me how to do it!
Very thank!
Levi


 
The browser method works great. Most the time it's easy enough to decrypt it that way.
 
You guys are going to get yourselves penalized by Google if you just change the link size to "0" like some people have suggested. That is considered "hiding links" and is a big no no.
 
this is 1 of ma frends website and the footer is shown in the middle of the theme can anyone help mee plzzz....
 
frendzz m a new in this forum plzzz help me..

ma link is not showin here plzzz help me out friends..
 
I am also having this problem, but the newer themes for me do not have encryption but i have located 3 parts blocking the change with the malicous code

Header.php first line after the w3 stuff
Functions.php the last lines
Themater.php the last lines

kinda stuck if anyone knows the naswer i left all the details on the coding part of the forums ty
 
Back
Top