Disable views on homepage

Posted in: Newspaper
Post count: 57

Hey guys, how to disable post views on homepage?

Post count: 3343

Hi,
Do you want that only on homepage?

If yes you need to change the code a little like here: http://screencast.com/t/juHedPQjTC

$buffy .= '<div class="hide-comment">';
$buffy .= '</div>';

$buffy .= '<div class="hide-views">';
$buffy .= '</div>';

And add this CSS in theme panel -> Custom CSS

.hide-views {
    display: inline-block;
}
.hide-comment {
    display: inline-block;
}

.home .hide-views {
    display: none;
}
Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.