By Thomas PAPIN on Sunday, 27 July 2014
Posted in Technical Issues
Replies 3
Likes 0
Views 301
Votes 0
Hello,

I would like to unactive :
- Meta Fields in the article post view (I just want automatic)
- Active Comments,Subscripitons,front,notification (User choose in article post)

In other word, I just want the title, description, keywords, categories, date publication

How to do that ?

Also How to get the same display for the blog that your demo website:
http://demo.stackideas.com/easyblog
I don't think the template for it.
I found that if my user is in two groups (one with an option unactive and the other with option active. You do a "OR". so the settings is set to TRUE

So I manage to remove: Active Comments,Subscripitons,front.

So I am still missing how to remove: "Password", "send email notification"
·
Sunday, 27 July 2014 05:23
·
0 Likes
·
0 Votes
·
0 Comments
·
Thomas PAPIN wrote:

I found that if my user is in two groups (one with an option unactive and the other with option active. You do a "OR". so the settings is set to TRUE

So I manage to remove: Active Comments,Subscripitons,front.

So I am still missing how to remove: "Password", "send email notification"


Missing also how to remove "Standard content, photo,video" "type of post"
·
Sunday, 27 July 2014 05:24
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Thomas,

You can turn off the "Post type" settings by disabling the microblog option in the back end of EasyBlog under Settings > Workflow > Microblogging

To remove the "Password" and "Send email notification", you can edit the file /components/com_easyblog/themes/dashboard/system/dashboard.write.options.php and remove the codes below:



<?php if($system->config->get('main_password_protect') && !$blog->isFeatured() ){ ?>
<li>
<label><?php echo JText::_('COM_EASYBLOG_DASHBOARD_WRITE_PUBLISHING_PROTECTION'); ?> :</label>
<div>
<div><input type="text" class="input has-icon text width-250 publish-password" name="blogpassword" id="blogpassword" value="<?php echo $blog->blogpassword;?>" /></div>
<div class="small"><?php echo JText::_( 'COM_EASYBLOG_DASHBOARD_WRITE_PUBLISHING_PROTECTION_INSTRUCTIONS' );?></div>
</div>
</li>
<?php } ?>


And,


<li>
<label><?php echo JText::_('COM_EASYBLOG_BLOGS_BLOG_SEND_NOTIFICATION_EMAILS'); ?> :</label>
<div style="margin-top:4px">
<?php echo $this->renderCheckbox( 'send_notification_emails' , $send_notification_emails );?>
</div>
</li>
·
Sunday, 27 July 2014 12:42
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post