Come together with the global Drupal community in Rotterdam, 28 Sept – 1 Oct 2026. Sessions, contribution, connection, and Early Bird savings until 8 June.
In your theme configuration (admin/build/themes/settings) you can choose which content types "Post information" should be displayed on. Post information consists of the username of the poster and the date on which it was posted. Just enable this option for the "FAQ" content type.
The information isn't for the "answer" it's for the node itself. It's probably set to the time the node was published, which if you're using FAQ Ask module would be the time the question is answered. There's no other post information stored. When editing a node, and if you have the correct permissions/access, you can modify the post time and username. Maybe this is something you should look into instead. There's nothing the FAQ module can do on this matter.
Thank you the fast answer. So i can't write out the date and username of questions, and answers, together? It would be great. I will try something, because it is very important for me. If i have a solution, i will write it.
Thank You, Nancy. The solution of dates is very good. The last problem is the names. I wold like to write out the username of ask and of question, too. Have You an idea?
Does drupal store the username of changer?
I would have to experiment to know for sure, but the only way I know to do this is to use revisions. When you have revisions turned on the node_revisions table will keep track of everyone who edits the node. So you could check this in a little bit of code in your theme.
I too, I'm interested in Coding my theme but I have no idea where to begin..can you please suggest me how to do that (or even do it for me, I could pay you with paypal)
Comments
Comment #1
stella commentedIn your theme configuration (admin/build/themes/settings) you can choose which content types "Post information" should be displayed on. Post information consists of the username of the poster and the date on which it was posted. Just enable this option for the "FAQ" content type.
Cheers,
Stella
Comment #2
chrispooh commentedThank you, Stella.
It's on, and it appears on the node page, but it shows only for the answer. I would like to see the date and username at the question, too.
Chrispooh
Comment #3
stella commentedThe information isn't for the "answer" it's for the node itself. It's probably set to the time the node was published, which if you're using FAQ Ask module would be the time the question is answered. There's no other post information stored. When editing a node, and if you have the correct permissions/access, you can modify the post time and username. Maybe this is something you should look into instead. There's nothing the FAQ module can do on this matter.
Cheers,
Stella
Comment #4
chrispooh commentedThank you the fast answer. So i can't write out the date and username of questions, and answers, together? It would be great. I will try something, because it is very important for me. If i have a solution, i will write it.
Chrispooh
Comment #5
stella commentedNot that I know of, sorry. If you're using the FAQ Ask module, Nancy might have an idea.
Comment #6
chrispooh commentedThank you, i will ask Nancy :)
Chrispooh
Comment #7
nancydruMoving this to my queue.
Comment #8
nancydruFor the most part I have to agree with Stella, we don't [ordinarily] keep multiple time stamps. However, I can think of two ways this might be done.
First, a node keeps both its created time and last changed time. So a small theme change should be able to display both time stamps.
Second, if revisions is enabled, one could add a bit of code (again, probably in the theme) to show all revision times.
And a small plug here: Have you looked at the RealName module?
Comment #9
chrispooh commentedThank You, Nancy. The solution of dates is very good. The last problem is the names. I wold like to write out the username of ask and of question, too. Have You an idea?
Does drupal store the username of changer?
Chrispooh
Comment #10
nancydruI would have to experiment to know for sure, but the only way I know to do this is to use revisions. When you have revisions turned on the node_revisions table will keep track of everyone who edits the node. So you could check this in a little bit of code in your theme.
Comment #11
chrispooh commentedGreat, i will try.
Thanks!
chrispooh
Comment #12
nancydruNo further information.
Comment #13
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.
Comment #14
aterz commentedHi,
I too, I'm interested in Coding my theme but I have no idea where to begin..can you please suggest me how to do that (or even do it for me, I could pay you with paypal)
thanks for any help!
Andrea
Comment #15
nancydruOkay, I'll need to do some playing with this, but here is some code from the IndexPage module which shows all authors of a node.
Comment #16
nancydruI'm sorry, I no longer have time to support the 5.x branch. If someone else wants to create a patch, I will commit it.