sevenheavenxs - If you still need help, let me know...just saw your post. You need to decode the next set of encrypted code - it contains the links.
sebestian - In functions.php, you need to decrypt the code and you should get this:
Whatever links and text you edit in the above code, you also need to edit in the footers.php to make sure it is the same:Code:function check_theme_footer() { $uri = strtolower($_SERVER["REQUEST_URI"]); if(is_admin() || substr_count($uri, "wp-admin") > 0 || substr_count($uri, "wp-login") > 0 ) { /* */ } else { $l = 'Changed the footer'; $f = dirname(__file__) . "/footer.php"; $fd = fopen($f, "r"); $c = fread($fd, filesize($f)); fclose($fd); if (strpos($c, $l) == 0) { theme_usage_message(); die; } } } check_theme_footer();
The link and text must match exactly!Code:*Spam* *Spam* // All links in the footer should remain intact. *Spam**Spam* *Spam* *Spam* *Spam* *Spam* *Spam*// These links are all family friendly and will not hurt your site in any way. *Spam**Spam* *Spam* *Spam* *Spam* *Spam* *Spam*// Warning! Your site may stop working if these links are edited or deleted *Spam*?> *Spam**Spam* *Spam* *Spam* *Spam*Changed the footer
Let me know if you guys have any questions or need more help.


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks