Remove search, archives and categories on contact page

Discussion in 'BlackBird WordPress Theme' started by mikeedgley, May 23, 2013.

  1. mikeedgley

    mikeedgley New Member

    Joined:
    May 17, 2013
    Messages:
    2
    Likes Received:
    0
    How do I remove the search bar, archives and categories content on the right side of the contact page?

    Thanks
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to template-contact.php present in your theme directory and remove the code given below

    Code:
      <?php get_sidebar(); ?>
    Sending image for reference

    [​IMG]
     
  3. expertcanine

    expertcanine Guest

    Joined:
    May 14, 2014
    Messages:
    3
    Likes Received:
    0
    Location:
    Columbus, OH
    Isn't there a way to do this - other than getting into the php?
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107

    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .page-template-template-contact-php .sidebar {
    display: none;
    }
     
    This will solve your issue.
     

Share This Page