No breadcrumbs

Discussion in 'ColorWay WordPress Theme' started by drunkfox, May 7, 2013.

Thread Status:
Not open for further replies.
  1. drunkfox

    drunkfox New Member

    Joined:
    May 7, 2013
    Messages:
    3
    Likes Received:
    1
    Hi,
    I would like to hide the breadcrumbs (display: none).

    Also, I would like to remove the words: "If you enjoyed this article please consider sharing it!" and the social-logo in the post.

    How can I do, please?
    Thanks
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)
    Code:
    .content-info {
    display: none;
    }
    .social_link {
    display: none;
    }
    .social_logo {
    display: none;
    }
    This will solve your issue.
     
  3. drunkfox

    drunkfox New Member

    Joined:
    May 7, 2013
    Messages:
    3
    Likes Received:
    1
    Thank you Piyush, it work well!

    I apologize for my English, I know it's not the best, and I have two more questions, please:
    1) is it possible to hide or remove the meta date and author, and the words "Comments are closed" in the blog template post? (Please see the attachment)
    2) in the sidebar there are "Archives" and "Categories", but I can not remove using the widget options... Is it possible to remove them?

    I'm sorry for so many questions, but I'm a beginner...

    Thanks for your time!
     

    Attached Files:

  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    1). For your first issue,
    Go to the single.php file present in your Theme directory and remove the code from that file as shown in the image given below.
    [​IMG]

    This will remove the meta date and author from the single blog post page.

    Now,
    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)
    Code:
    .nocomments {
    display: none;
    }
    
    This will remove the words "Comments are closed" from the single blog post page.

    2). For your second issue,
    Go to the Widgets panel (Appearance -> Widgets) in your dashboard, drag the text widget and drop it in the Primary Widget Area as shown in the image given below.
    [​IMG]
    This will automatically remove the "Archives" and "Categories" from the sidebar.
     
  5. drunkfox

    drunkfox New Member

    Joined:
    May 7, 2013
    Messages:
    3
    Likes Received:
    1
    Great support,
    thank you very much.
     
    Piyush likes this.
Thread Status:
Not open for further replies.

Share This Page