• Resolved brianmckoy

    (@brianmckoy)


    Hello,

    On each page of my website on the right side of the page there is a “Search Bar” “Categories and “Archives” on each page of my site and it makes my website look like a blog. I just wanted to know how I can get rid of them. Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • Can you provide a link to your site, or mention which theme you’re using?

    The elements within the sidebar may be widgets which you can try to control via the Appearance > Widgets menu.

    Thanks.

    • This reply was modified 8 years, 4 months ago by ThemeSumo.
    Thread Starter brianmckoy

    (@brianmckoy)

    Hello,

    Thank you for getting back to me. https://www.americanbuilderscapital.com

    I am using the blackbird theme

    Thread Starter brianmckoy

    (@brianmckoy)

    I tried going to the appearance than widgets to remove the “Search Bar” “Categories and “Archives” I cant seem to get rid of them. Thanks again

    Thanks.

    Within the sidebar.php file you can remove the fallback widgets which are displayed if you don’t add any widgets to the sidebar.

    <?php get_search_form(); ?>
    <h3>
        <?php _e('Categories', 'blackbird'); ?>
    </h3>
    <ul>
        <?php wp_list_categories('title_li'); ?>
    </ul>
    <h3>
        <?php _e('Archives', 'blackbird'); ?>
    </h3>
    <ul>
        <?php wp_get_archives('type=monthly'); ?>
    </ul>

    Hope this helps.

    Thread Starter brianmckoy

    (@brianmckoy)

    It worked perfectly. Thank you for your time and your help.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to get rid of the “Search Bar” “Categories and “Archives” on my pages’ is closed to new replies.