- Issue created by @vistree
- 🇩🇪Germany vistree
I found a possible solution: instead of using hook_form_alter() I can add a description using hookp_reprocess_details(&$variables)
/** * Implements hook_preprocess_HOOK(). */ function mymodule_preprocess_details(&$variables) { if (isset($variables["element"]["#id"]) && $variables["element"]["#id"] == 'edit-scheduler-settings') { $variables["description"] = 'Info when cronjobs are about to run'; } }
- 🇬🇧United Kingdom jonathan1055
Hi vistree,
It's good that you found a solution and thank you for posting it here, so others can benefit.
Automatically closed - issue fixed for 2 weeks with no activity.