5099 Posts in 1519 Topics by 1116 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1537 Views |
-
Move URL field to Main tab

7 February 2010 at 5:29am
Has anyone had any luck moving the URL field to the Main tab? I tried it about a month ago with no luck. i am pretty familiar with customizing the CMS tabs in the past, but cannot seem to get this particular field to move correctly. any tips would be appreciated.
-
Re: Move URL field to Main tab

8 February 2010 at 9:15am
What about something like below? I didn't try that, this is based on code that moves tabs around, so it might fail
$segment = $fields->fieldByName('Root')->fieldByName('Content')->fieldByName('Metadata')->fieldByName('URLSegment');
$fields->removeFieldFromTab('Root.Content.Metadata', 'URLSegment');
$fields->addFieldToTab('Root.Content.Main', $segment);mat.
-
Re: Move URL field to Main tab

10 February 2010 at 11:02am
thanks for idea - but this method did not work. anyone else have any insight/experience with moving this Field to the Main tab?
-
Re: Move URL field to Main tab

2 April 2010 at 1:58pm
This works for me:
$fields->removeFieldFromTab('Root.Content.Metadata', 'URL');
$fields->addFieldToTab("Root.Content.Main", new TextField('URLSegment','URL')); -
Re: Move URL field to Main tab

12 July 2010 at 2:02pm
I tried the code posted by hknight and it moves the URL to the main tab however the field is no longer automatically filled by JavaScript. How can I get the JavaScript to auto-fill it after moving it?
-
Re: Move URL field to Main tab

12 July 2010 at 3:00pm
You might need to update the script, it uses the id of the input element which may have changed after you moved it.
The script is sapphire/javascript/UpdateURL.js
either edit it or better still, block the requirement and add your own updated version of the script (in your getCMSFields).
This is based on v2.4.0.
hth
| 1537 Views | ||
|
Page:
1
|
Go to Top |


