By danny ter Avest on Wednesday, 27 February 2019
Posted in General Issues
Replies 8
Likes 0
Views 426
Votes 0
Hi, how can I disable next preview post buttons under post?
Hi there,

Can you provide us with a screenshot on what do you mean "next preview post buttons under post" so that we can have a better understanding of your current question?
·
Wednesday, 27 February 2019 18:06
·
0 Likes
·
0 Votes
·
0 Comments
·
Shure
·
Wednesday, 27 February 2019 18:16
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

There is no setting to do that currently.

You can copy the default.posts.php file from JoomlaFolder/components/com_easyblog/themes/wireframe/blogs/entry/default.posts.php and paste it at template override location which is at JoomlaFolder/templates/yourCurrentTemplate/html/com_easyblog/blogs/entry/default.posts.php.

Take note that you need to create the folders manually if you don't see it.

After that, you can look for and remove the following PHP code in the default.posts.php which is from the template override location:

<?php echo $this->output('site/blogs/entry/navigation'); ?>


Can you have a try and see how it goes?
·
Wednesday, 27 February 2019 18:28
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi, isn't there a way to do this with css?
·
Wednesday, 27 February 2019 18:34
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

You can add the following CSS code into Backend > EasyBlog > Themes > Custom CSS:

#eb .eb-entry-nav {
display:none;
}


Do clear all of your cache before you see the changes.
·
Wednesday, 27 February 2019 18:39
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post