Status:
Answered
I'm using MS Node to set a fee for users to view a node. All is fine, however when creating a node, the information available to the user is:
(screenshot with the information being displayed and what I'd like to change)
https://img.skitch.com/20110822-pdkaiwtuhr3ptxttqyckb8ntqu.jpg
Is that possible?
Many thanks








Wagner,
You can change the all of that text using either a custom module and hook_form_alter (it's worth the trouble of learning how to use hook_form_alter, since it is so useful and I use it on every site I build) or by using the String Overrides module (http://drupal.org/project/stringoverrides).
These two ways are good because you don't have to edit the code in the modules themselves, which essentially breaks when you need to upgrade. That is the best practice when using Drupal.
Hope that helps!
-Leighton