No Redirect When Moving Threads
This modification is in the archives.
As requested:
index.php?t=105737 Description This will have or only display the "Move to destination forum" with out selected or no redirection option displayed. You will need to edit the templates "threadadmin_movethread" and "threadadmin_movethreads" Instructions Step 1) In the template threadadmin_movethread find: Code:
<div><label for="rb_method_move"><input type="radio" name="method" value="move" id="rb_method_move" />$vbphrase[move_to_destination_forum]</label></div> <div><label for="rb_method_movered"><input type="radio" name="method" value="movered" id="rb_method_movered" checked="checked" />$vbphrase[move_and_leave_redirect_in_previous_forum]</label></div> Code:
<div><label for="rb_method_move"><input type="radio" name="method" value="move" id="rb_method_move" checked="checked" />$vbphrase[move_to_destination_forum]</label></div> <div><label for="rb_method_movered"><input type="radio" name="method" value="movered" id="rb_method_movered" />$vbphrase[move_and_leave_redirect_in_previous_forum]</label></div> If you only want the "move to destination forum" only: In threadadmin_movethread find: Code:
<div><label for="rb_method_move"><input type="radio" name="method" value="move" id="rb_method_move" />$vbphrase[move_to_destination_forum]</label></div> <div><label for="rb_method_movered"><input type="radio" name="method" value="movered" id="rb_method_movered" checked="checked" />$vbphrase[move_and_leave_redirect_in_previous_forum]</label></div> <div><label for="rb_method_copy"><input type="radio" name="method" value="copy" id="rb_method_copy" />$vbphrase[copy_thread_to_destination_forum]</label></div> Code:
<div><label for="rb_method_move"><input type="radio" name="method" value="move" id="rb_method_move" checked="checked" />$vbphrase[move_to_destination_forum]</label></div> In the template "threadadmin_movethreads" find: Code:
<div><label for="rb_method_move"><input type="radio" name="method" value="move" id="rb_method_move" />$vbphrase[move_to_destination_forum]</label></div> <div><label for="rb_method_movered"><input type="radio" name="method" value="movered" id="rb_method_movered" checked="checked" />$vbphrase[move_and_leave_redirect_in_previous_forum]</label></div> Replace with: Code:
<div><label for="rb_method_move"><input type="radio" name="method" value="move" id="rb_method_move" checked="checked" />$vbphrase[move_to_destination_forum]</label></div> <div><label for="rb_method_movered"><input type="radio" name="method" value="movered" id="rb_method_movered" />$vbphrase[move_and_leave_redirect_in_previous_forum]</label></div> Daniel http://www.mmoccforum.com Download No files for download. |
Similar Mods
Move threads with leave no redirect as default or Expired redirect as default | vBulletin 3.6 Template Modifications |
[release] moving bar and % on redirect after posting | vBulletin 2.x Template Modifications |