By Sunny on Saturday, 17 June 2017
Posted in Technical Issues
Likes 0
Views 347
Votes 0
Hi,

How can i disable post cover from composer?

regards
I wouldn't advise you to turn this off and it is currently not possible to disable this from the composer but I guess you could hide the button by editing the file /components/com_easyblog/themes/wireframe/composer/toolbar/default.php

[gist]
<div class="btn-group" data-toolbar-view data-type="cover">
<?php echo $this->output('site/composer/toolbar/cover'); ?>
</div>
[/gist]

And change it to,

[gist]
<div class="btn-group t-hidden" data-toolbar-view data-type="cover">
<?php echo $this->output('site/composer/toolbar/cover'); ?>
</div>
[/gist]
·
Saturday, 17 June 2017 23:42
·
0 Likes
·
0 Votes
·
0 Comments
·
It works Perfect Mark, Thanks for the hint!
·
Monday, 19 June 2017 14:02
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

You are most welcome. Glad to hear that your issue has been resolved now.

As a gentle reminder, kindly start a new thread if you have any other issue in the future so it will be easier for us to manage your inquiry. I will lock and mark this thread as resolved.
·
Monday, 19 June 2017 14:05
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post