By Esteban Morales on Sunday, 27 July 2014
Posted in General Issues
Replies 1
Likes 0
Views 618
Votes 0
I want to disable this option. How can I?
Hello Esteban,

I am really sorry for the delay of this reply as it is a weekend for us here. You can edit the file /components/com_easyblog/themes/default/blog.comment.form.php and remove the codes below at around line 127,


<div id="subscription-box" class="subscription-box fsm">
<?php if ($subscriptionId) : ?>
<div id="unsubscription-message" class="unsubscription-message mtm mbm"><?php echo JText::_('COM_EASYBLOG_ENTRY_AUTO_SUBSCRIBE_SUBSCRIBED_NOTE'); ?> <a href="javascript:void(0);" title="" onclick="eblog.blog.unsubscribe('<?php echo $subscriptionId; ?>', '<?php echo $blog->id; ?>');"><?php echo JText::_('COM_EASYBLOG_UNSUBSCRIBE_BLOG'); ?></a></div>
<?php else : ?>
<?php if($config->get('main_subscription') && $blog->subscription) : ?>
<div id="subscription-message" class="subscription-message">
<div class="clearfix mtm mbm">
<input class="inputbox easyblog-checkbox" type="checkbox" name="subscribe-to-blog" id="subscribe-to-blog" value="yes" <?php echo $system->config->get( 'comment_autosubscribe' ) ? ' checked="checked"' :'';?> />
<label for="subscribe-to-blog"><?php echo JText::_('COM_EASYBLOG_SUBSCRIBE_BLOG'); ?>
<?php if( $my->id > 0 ) : ?>
(<?php echo $my->email; ?>)
<?php else: ?>
(<?php echo JText::_('COM_EASYBLOG_ENTRY_AUTO_SUBSCRIBE_NOTE'); ?>)
<?php endif; ?>
</label>
</div>
</div>
<?php endif; ?>
<?php endif; ?>
</div>
·
Sunday, 27 July 2014 23:08
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post