By Anirudh Kumar on Sunday, 08 December 2013
Replies 1
Likes 0
Views 1.1K
Votes 0
while "Writing New Post" I want to keep "Display on Frontpage : Yes" under publishing options and I don't want to display or give a choice for Blogger to choose "NO"
Why?
1) Its so confusing for a non-technical person
2) Writing Blog page is already to complicated
Hello Anirudh,

I am really sorry for the delay of this reply as it is a weekend for us here. It's currently not configurable but you can always add some css codes in the file /components/com_easyblog/themes/dashboard/system/dashboard.write.options.php and locate the codes below,


<?php if ( $this->acl->rules->contribute_frontpage ) { ?>
<li>
<label><?php echo JText::_('COM_EASYBLOG_DASHBOARD_WRITE_PUBLISHING_DISPLAY_ON_FRONTPAGE'); ?> :</label>
<div style="margin-top:4px">
<?php echo $this->renderCheckbox( 'frontpage' , $frontpage );?>
</div>
</li>
<?php } ?>


Replace it with,


<?php if ( $this->acl->rules->contribute_frontpage ) { ?>
<li style="display: none;">
<label><?php echo JText::_('COM_EASYBLOG_DASHBOARD_WRITE_PUBLISHING_DISPLAY_ON_FRONTPAGE'); ?> :</label>
<div style="margin-top:4px">
<?php echo $this->renderCheckbox( 'frontpage' , $frontpage );?>
</div>
</li>
<?php } ?>
·
Sunday, 08 December 2013 13:21
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post