By Lloyd Cormier on Thursday, 31 October 2013
Posted in Technical Issues
Replies 3
Likes 0
Views 724
Votes 0
Under easyblog->notifications I have no settings set to yes. I am not interested in subscription or rss at this point. However when I am at the blog posting page I have an option to set "send notification emails" to YES.

How do I turn that off. It shouldn't be there if I have set everything to NO in the notification area.
Hello Lloyd,

Sorry for the late reply. You can actually turn this off in the backend -> EasyBlog -> Settings -> Workflow -> General. You can find the option "Send Notification Emails" under "Default Options" section. Set this to NO Hope this helps.

Thanks!
·
Thursday, 31 October 2013 10:45
·
0 Likes
·
0 Votes
·
0 Comments
·
That was already set to NO
·
Monday, 04 November 2013 07:17
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Lloyd,

So sorry for the delay in getting back to you. I think I misunderstood you. Please go to the file

JOOMLA/components/com_easyblog/themes/dashboard/system/dashboard.write.options.php

and remove/comment the codes at line 135 to 140
<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>


and file

JOOMLA/administrator/components/com_easyblog/views/blog/tmpl/default_publishing.php

and remove/comment the codes at line 170 to 179
<li>
<label for="frontpage"><?php echo JText::_('COM_EASYBLOG_BLOGS_BLOG_SEND_NOTIFICATION_EMAILS'); ?></label>
<div>
<div class="has-tip">
<div class="tip"><i></i><?php echo JText::_( 'COM_EASYBLOG_BLOGS_BLOG_SEND_NOTIFICATION_EMAILS_DESC' );?></div>

<?php echo $this->renderCheckbox( 'send_notification_emails', $this->send_notification_emails ); ?>
</div>
</div>
</li>

Hope this helps.

Thanks!
·
Monday, 04 November 2013 13:34
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post