View Full Version : Changing position of tab?
Duckface
06-13-2015, 09:50 PM
How would I change the position of the tabs and swap them around AND on the url tab make the radio check box unchecked by default?
I can't find this in any of the Editor Templates. Is this entirely javascript?
Daniel
06-13-2015, 09:53 PM
What kind of tab? MEMBERINFO tab or header/navbar tab? What radio box? Screenshots might help.
Duckface
06-13-2015, 10:22 PM
I forgot an image to show you:
http://i.imgur.com/8rpUJ2w.png
--------------- Added 1434300539 at 1434300539 ---------------
Does anyone have any idea at all?
Daniel
06-15-2015, 07:32 AM
In clientscript/ckeplugins/vbimage/dialogs/image.js
To uncheck the dialog box
Find
label: me.editor.lang.vbulletin.retrieve_remote_file_and_ ref_local,
labelLayout: 'horizontal',
setup: function() {
if (me.editor.config.vbulletin.attachinfo)
{
this.setValue(true);Replace with
label: me.editor.lang.vbulletin.retrieve_remote_file_and_ ref_local,
labelLayout: 'horizontal',
setup: function() {
if (me.editor.config.vbulletin.attachinfo)
{
this.setValue(false);
To switch the default tab (not necessarily tab order)
Find
var node1 = YAHOO.util.Dom.get("uploadtabs0");
var node2 = YAHOO.util.Dom.get("_uploadtabs0");Replace with
var node1 = YAHOO.util.Dom.get("_uploadtabs0");
var node2 = YAHOO.util.Dom.get("uploadtabs0");
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.