Support » Fixing WordPress » Remove Footer (urgent!)

  • Hi guys, if you take a look at my site i have some options in the footer, trouble is if i remove all the code from the footer or the php function from index.php i get the WSOD.

    Ive tried everything to get rid of this area, (dark grey bit) but nothing seems to be working? Can anyone help?

Viewing 4 replies - 1 through 4 (of 4 total)
  • What’s in footer.php? Drop a copy of the file into the WordPress pastebin and post the pastebin url here. Perhaps someone will be able to spot the problem and suggest a solution.

    should be able to delete from footer.php everything for display…..

    starting with

    <div class='wrapper' id='footerwrap'>

    and ending with

    </div><!--end footer-->
    
    </div>

    just a guess, would need to see footer.php to be sure. Just make sure you don’t delete the clsing body and html tags

    Thread Starter mikem1986

    (@mikem1986)

    Hi guys

    Footer looks like

    <?php
    $pageinfo = array(‘full_name’ => ‘Footer Options’, ‘optionname’=>’footer’, ‘child’=>true, ‘filename’ => basename(__FILE__));

    $options = array (

    array( “type” => “open”),

    array( “type” => “group”),

    array( “name” => “Contact Button Line 1”,
    “desc” => “Enter the first line of text to display within your contact button.”,
    “id” => “button1”,
    “std” => “Contact Form”,
    “size” => 20,
    “type” => “text”),

    array( “name” => “Contact Button Line 2”,
    “desc” => “Enter the second line of text to display within your contact button.”,
    “id” => “button2”,
    “std” => “get in touch with us”,
    “size” => 20,
    “type” => “text”),

    array( “name” => “Button Link”,
    “desc” => “Select the Page the button should link to”,
    “id” => “button_link”,
    “type” => “dropdown”,
    “subtype” => “page”),

    array( “type” => “group”),

    array( “name” => “Copyright Text”,
    “desc” => “Enter your copyright text here”,
    “id” => “copyright”,
    “std” => “This site uses valid HTML and CSS. All content Copyright © 2010 DISPLAY, Inc”,
    “size” => 75,
    “type” => “text”),

    array( “type” => “group”),

    array( “name” => “Facebook Account”,
    “desc” => “Enter the name of your facebook account to create a small icon link within your footer”,
    “id” => “acc_fb”,
    “std” => “”,
    “size” => 20,
    “type” => “text”),

    array( “name” => “Flickr Account”,
    “desc” => “Enter the name of your flickr account to create a small icon link within your footer (looks something like this: 34166943@N05 )”,
    “id” => “acc_fl”,
    “std” => “”,
    “size” => 20,
    “type” => “text”),

    array( “name” => “Twitter Account”,
    “desc” => “Enter the name of your twitter account to create a small icon link within your footer”,
    “id” => “acc_tw”,
    “std” => “”,
    “size” => 20,
    “type” => “text”),

    array( “type” => “group”),

    array( “type” => “close”)

    );

    Im not totally clueless when it comes to php and the 1, 2, 3, 4 columns can be edited from the widget area but I just cant seem to remove the search and contact options on the right side

    Thread Starter mikem1986

    (@mikem1986)

    Hi again guys.

    Ive deleted the <?php get_footer(); } ?>

    from most of the php files now and seems to be god on everything except page.php. Once I delete the code from this file i get the white screen of death?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove Footer (urgent!)’ is closed to new replies.