如何在Drupal 6安装中主题配置文件页面(user / uid)中的“保存”按钮? 我试过,当我尝试主题时,它主题是网站上的所有“保存”按钮。
谢谢!
Rosamunda
答案 0 :(得分:2)
您可以尝试将CSS代码嵌入到新的CSS文件中,并通过template.php中的template_preprocess_page将其添加到此页面
function template_preprocess_page(&$variables)
{
if(arg(0) == "user" && is_numeric(arg(1)) && is_null(arg(2)))
{
drupal_add_css('PATH_TO_CSS_FILE');
}
}
不要忘记使用主题的机器名称替换功能名称中的“模板”一词。例如“ bartik _prerocess_page”
有关template_preprocess_page()的更多信息,请访问:http://api.drupal.org/api/drupal/includes%21theme.inc/function/template_preprocess_page/7
希望这有帮助
穆罕默德