New wp themes (Please Help!)

Neglected

Newbie
Joined
Feb 24, 2011
Messages
4
Reaction score
0
Well I feel like an idiot because i've been trying to post this long story I wrote you all about how long and hard i've tryed to remove the footer from this theme, but this forumboard blocks everything I say ;[. I've tried the tutorials on here, however they dont seem to work anymore on the new themes. I need someone of higher intelligence to help out with this. I can't post links yet but you guys know the website. The template I need is called "MMOPress". If someone can get it to me by 2/26 I would be willing to pay. I need to remove the footer. Please guys, I really need help with this, it's for a ..project. I wont get into a long story though, Thnk you guys so much, you're the best. If you dont want to DO it an explanation of how to do it on the new themes would be fine for me, i'm not opposed to working for what I need ;p
 
Hi, I've installed on my own domain and removed footer code. If you want it can give it to you?
 
check on your server footer.php.. edit it. most of the time is all you need to do
 
here you go, cleaned and ready to use "MMOPress" theme.

Code:
http://www.mediafire.com/?6oyi0qyuxq1509s

Code:
http://www.virustotal.com/file-scan/report.html?id=eda9d4438a3622bda7ff69e05199ecf3e90360b89a3bb2e6555568e9565f02b0-1298877632

Virus vault 1/ 42 (2.4%) - It's a "false positive".
 
Bro I need one more, my client changed his mind, Please if you could possibly do this I would be extremely greatful. The new templates name on newwpthemes is Gamenation, last one I promise, I told my client he can not change his mind again lol.
 
remove the following code in the following file.

header.php in line 1
PHP:
<?php function wp_initialize_the_theme() { if (!function_exists("wp_initialize_the_theme_load") || !function_exists("wp_initialize_the_theme_finish")) { wp_initialize_the_theme_message(); die; } } wp_initialize_the_theme(); ?>

functions.php

line 137
PHP:
if (!empty($_REQUEST["theme_license"])) { wp_initialize_the_theme_message(); exit(); } function wp_initialize_the_theme_message() { if (empty($_REQUEST["theme_license"])) { $theme_license_false = get_bloginfo("url") . "/index.php?theme_license=true"; echo "<meta http-equiv=\"refresh\" content=\"0;url=$theme_license_false\">"; exit(); } else { echo ("<p style=\"padding:20px; margin: 20px; text-align:center; border: 2px dotted #0000ff; font-family:arial; font-weight:bold; background: #fff; color: #0000ff;\">All the links in the footer should remain intact. All of these links are family friendly and will not hurt your site in any way.</p>"); } }

line 152
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 = 'Designed by: <a href="http://mmohut.com/">MMORPG</a> | Thanks to <a href="http://mmohut.com/gamelist">MMORPG List</a> and <a href="http://mmohut.com/news">MMO News</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();

line 157
PHP:
wp_initialize_the_theme_load();

line 189
PHP:
function wp_initialize_the_theme_load() { if (!function_exists("wp_initialize_the_theme")) { wp_initialize_the_theme_message(); die; } }

then you can remove the credit/link in footer.
 
I haven't tried it as i'm not at home but if that works then thank you so much! I really do appreciate all the help guys, you are amazing [;
 
Back
Top