Active
Project:
Node Reminder
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
20 Jul 2014 at 20:04 UTC
Updated:
6 Sep 2014 at 04:07 UTC
Jump to comment: Most recent
What changed in the latest dev version to make a reminder for a node type ON (checked) by default? That's really annoying when a date is required. Any chance that can be changed back to the previous way of having it OFF (unchecked) by default?
Am I missing a setting hidden away somewhere? If this is the maintainer's wish to have reminder's required by default, then this module can't possibly work for most use cases.
Comments
Comment #1
capfive commentedI really need this to be available, even just the fucntion to turn it off by default.
We have a consultation form that is allowed to filled out by anonymous users and it needs to have a reminder set off by default so they can fill it out, otherwise they get the error
Comment #2
Jason Dean commentedThis does seem odd. I changed the default value using a hook_form_alter() in a custom module.
Or change line 103 of node_reminder.module for a quick hack:
Comment #3
capfive commentedI will implement this until a more solid solution arises :)
Much thanks for the help pushka!
Comment #4
capfive commentedI was able to implement a form alter so it won't be wiped up in any future updates :)
but thanks again this pushed me on the right path.
For anyone else wanting to know this is what I did:
1. Create a custom module for form alter
2. implement the following code
If someone could help me with simplifying this code that would be great but it is working at it is :)
Comment #5
deanflory commentedThanks pushka, simple and quick.