XF 1.1 Re: Moderaton Queue Mass Approve/etc... option

JacquiiDesigns

Well-known member
Is there a tweak of some sort where the moderation queue has a mass approve/etc... option? Kinda like so:

di-5XYJ.png
 
Nope. But you can change the default by editing this template:

Admin CP -> Appearance -> Templates -> moderation_queue_list

Move the red piece to one of the other options:

Rich (BB code):
				<dl class="ctrlUnit">
					<dt>{xen:phrase action}:</dt>
					<dd>
						<ul>
							<li><label for="ctrl_{$entry.content_type}_{$entry.content_id}_action_none">
								<input type="radio" name="queue[{$entry.content_type}][{$entry.content_id}][action]" value="" id="ctrl_{$entry.content_type}_{$entry.content_id}_action_none" checked="checked" />
								{xen:phrase do_nothing}
							</label></li>

							<li><label for="ctrl_{$entry.content_type}_{$entry.content_id}_action_approve">
								<input type="radio" name="queue[{$entry.content_type}][{$entry.content_id}][action]" value="approve" id="ctrl_{$entry.content_type}_{$entry.content_id}_action_approve" />
								{xen:phrase approve}
							</label></li>

							<li><label for="ctrl_{$entry.content_type}_{$entry.content_id}_action_delete">
								<input type="radio" name="queue[{$entry.content_type}][{$entry.content_id}][action]" value="delete" id="ctrl_{$entry.content_type}_{$entry.content_id}_action_delete" />
								{xen:phrase delete}
							</label></li>
						</ul>
					</dd>
				</dl>
 
Top Bottom