I really don't want the "Placeholder tokens" fieldset. Many of my users still have dial-up - so this makes the form really SLOW. I have yet to create a site where there is any value to having all of that on the screen. I'm maintaining 16 sites, so please don't suggest a theme function to make my job much harder.
Comments
Comment #1
matthew_ellis24 commentedThere's a checkbox just underneath the title field that says "Allow tokens" that you can uncheck
Comment #2
nancydruNope, no response other than yours.
Comment #3
quicksketchSorry theming is generally the way things work. You could also do a hook_form_alter() in a custom module that would affect all your sites at once if you're not wanting to do it in the theme.
I'm going to go ahead and close after the lack of activity on this issue.
Comment #4
mrgoltra commentedsubscribing..
Comment #5
oash commentedThis is because of the link module.
To fix the problem, open the link.module and comment the following code
// Add token module replacements if available
// if (module_exists('token') && $field['enable_tokens']) {
// $tokens_form = array(
// '#type' => 'fieldset',
// '#collapsible' => TRUE,
// '#collapsed' => TRUE,
// '#title' => t('Placeholder tokens'),
// '#description' => t("The following placeholder tokens can be used in both titles and URLs. When used in a URL or title, they will be replaced with the appropriate values."),
// '#weight' => 2,
// );
// $tokens_form['help'] = array(
// '#value' => theme('token_help', 'node'),
// );
// }