Quote:
Originally Posted by rasun
Great Addon, thank you!
I have two questions.
First the BBCode for Images doesn?t appear if you create a new entry. allow_images is set to "yes". If you write the bbcode  .... Any ideas? I have created my own spoiler bbcode in my forum, can it be the reason?
|
I'll get back to you on this.
Quote:
If you create or edit an entry the is a option for:
Notification
Email those users who have already accessed this entry?
I want to disable this completely so nobody can choose it. How can I make it?
|
This is only shown to users who have 'can_moderate_link' LDM permission, so if you don't use moderation, just take away that permission.
Otherwise, edit the links_addnewlink template, and find this sequence:
Code:
<if condition="$links_permissions['can_moderate_links']">
<tr>
<td class="alt1" width="20%">
<b>$vbphrase[ll_notify]</b><br />
<span class="smallfont">
$vbphrase[ll_notify_text]
</span>
</td>
<td class="alt1">
<input type="radio" name="notify" value="1" /> $vbphrase[ll_yes]
<input type="radio" name="notify" value="0" checked="checked" /> $vbphrase[ll_no]
</td>
</tr>
<else />
<tr style="display:none;">
<td class="alt1" colspan="2">
<input type="hidden" name="notify" value="0" />
</td>
</tr>
</if>
and change to
Code:
<tr style="display:none;">
<td class="alt1" colspan="2">
<input type="hidden" name="notify" value="0" />
</td>
</tr>