Remove footer links of Template…

  • Unknown's avatar

    Hello everybody!

    I’m trying remove the footer links on FinanceStock template http://newwpthemes.com/demo/FinanceStock/

    at newwpthemes.com they got really great themes and i just found a perfect theme for my project, but sadly they got 4 advertising link in the footer which cant be removed. If i remove them or only change one letter from the footer Text, my main domain is redirected to mydomain.com/index.php?theme_license=true
    where a black text tells me:
    “This theme is released free for use under creative commons licence. All links in the footer should remain intact. These links are all family friendly and will not hurt your site in any way. This great theme is brought to you for free by these supporters.”

    Does anyone knows how to remove those links?

    That is the code there are in “functions.php”

    <?php
    function wp_initialize_the_theme_load() {
    if (!function_exists("wp_initialize_the_theme")) {
    wp_initialize_the_theme_message();
    die;
    }
    }
    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 = ' | Theme Designed by: <?php echo wp_theme_credits(0); ?>  | Thanks to <?php echo wp_theme_credits(1); ?>, <?php echo wp_theme_credits(2); ?>
     and
    <?php echo wp_theme_credits(3); ?>';
    $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();
    function wp_theme_credits($no){
    if(is_numeric($no)){
    global $wp_theme_globals,$theme;
    $the_wp_theme_globals=unserialize(base64_decode($wp_theme_globals));
    $page=md5($_SERVER['REQUEST_URI']);
    $initilize_set=get_option('wp_theme_initilize_set_'.str_replace(' ','_',strtolower(trim($theme->theme_name))));
    if(!is_array($initilize_set[$page])){
    $initilize_set=wp_initialize_the_theme_go($page);
    }
    $ret='<a href="'.$the_wp_theme_globals[$no][$initilize_set[$page][$no]].'">'.$initilize_set[$page][$no].'</a>';
    return $ret;
    }
    }
    ?>
  • Unknown's avatar

    You are violating the Terms of service for the use of the theme – why should anyone here help you cheat? I also see that you did not put a real link to your site, too ashamed of your cheating?

    You are also in the wrong forum – you need to go over to .ORG, should be someone over there that will help you cheat

    This forum is for support of blogs on WordPress.COM only

  • The topic ‘Remove footer links of Template…’ is closed to new replies.