• Resolved haivri

    (@haivri)


    Hi,

    I am running Travelify theme on WordPress 4.4. I would like to disable the author bar at the top of the posts. But, I can’t find a button to do that.

    Can you help?

    Thanks.

Viewing 8 replies - 1 through 8 (of 8 total)
  • You want to remove the hole bar or just the author’s name ?

    Thread Starter haivri

    (@haivri)

    @faycal hi,

    I would like to remove the whole bar.

    Thanks,

    You can do it with css, in your style.css file, search of this:

    .single .entry-meta-bar {
        padding-bottom: 10px;
    }

    Replace it with:

    .single .entry-meta-bar {
        padding-bottom: 10px;
        display: none;
    }

    Hi @haivri,

    I hope you are well today and thank you for your question.

    You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

    Admin Area -> Appearance -> Customize -> Travelify Other Options

    .single .entry-meta-bar {
        display: none;
    }

    Best Regards,
    Movin

    Thread Starter haivri

    (@haivri)

    Thank you guys. That work on the post pages. But on the blogroll the author bar still shows at the bottom of each post. Can I remove that too?

    Thanks,

    Hi @haivri,

    If you want to remove it from all pages then use the following CSS code instead of previously provided code.

    .entry-meta-bar {
        display: none;
    }

    Best Regards,
    Movin

    What if we just want to remove the author’s name?

    @catrinasgarden if you want to just remove the author’s name then you can do so by using the following CSS code.

    .entry-meta span.byline {
        display: none;
    }
Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘How to: Remove author bar from top of post Travelify’ is closed to new replies.