• I have the Wine Clean 1.0 theme on my site http://socalwinenews.com

    I cannot get rid of the blogroll on my right sidebar. I deleted anything in the blogroll yet is still shows. Blogroll is nowhere in my dashboard even. Heavens to Murgetroid!

    I have been everywhere in editor and cannot find where the blogroll is hidden, as it is not found as blog, roll or blogroll.

    Advice?

Viewing 7 replies - 1 through 7 (of 7 total)
  • Try editing your theme’s sidebar.php file and looking for <?php wp_list_bookmarks();?>

    Thread Starter rogerpaige

    (@rogerpaige)

    Esmi, thx, but that doesn’t exist. All I have is the below CSS. I tried removing <?php wp_list_pages(‘title_li=’); ?> but it only removed my pages & not blogroll. Still working on where it is.

    <!– Sidebar –>
    <div class=”sidebar”>

    <h3>Pages</h3>

      <?php wp_list_pages(‘title_li=’); ?>

    <h3>Archives</h3>

      <?php wp_get_archives(‘type=monthly’); ?>

    <?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(1) ) : ?>

    <?php endif; ?>

    </div>
    <!– Sidebar –>

    You have two sidebars. It’s in the other one.

    Thread Starter rogerpaige

    (@rogerpaige)

    This is the only reference to the right sidebar. I found it in the functions.php

    <?php
    if ( function_exists(‘register_sidebar’) )
    register_sidebar(array(
    ‘name’ => ‘Sidebar Left’,
    ‘before_widget’ => ”,
    ‘after_widget’ => ”,
    ‘before_title’ => ‘<h3>’,
    ‘after_title’ => ‘</h3>’,
    ));
    register_sidebar(array(
    ‘name’ => ‘Sidebar Right’,
    ‘before_widget’ => ”,
    ‘after_widget’ => ”,
    ‘before_title’ => ‘<h3>’,
    ‘after_title’ => ‘</h3>’,
    ));
    ?>

    Try looking in footer.php

    Thread Starter rogerpaige

    (@rogerpaige)

    That’s pretty much impossible. Here is a fraction of what my footer php looks like.

    GIFMGdZw0z7zXUqLlioYts108qvL4fweO2GxgmBPOadHi22Uj4m1R1vVGySTUOLrfEj8t+

    I have a feeling it is somewhere in the footer.php because i completely removed the footer.php and my sidebars dissappeared. But, because of the scrambling I don’t know where.

    Your theme has an encoded footer. Personally, I wouldn’t touch a themes like this but if you want to decode the footer, see http://wordpress.org/support/topic/300761?replies=152

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Blogroll’ is closed to new replies.