By RichieRich on
I bet that this is an easy one, but I can't find the answer. I've created a new content type called 'maps' for all my pages which have google maps embedded in them. The thing is that when I display the 'maps' pages the submission information is displayed at the top, as in:
'Submitted by admin on Fri, 04/10/2009 - 09:24'
How do I stop this from happening without having to go back to the old page method. Oh, taxonomy info is also presented, but I guess that the method for removal is the same.
Thanks,
Richard
Comments
To remove, go to
To remove, go to admin/build/themes then configure your global settings (it's on the right).
Pobster
Thanks Pobster
Thanks very much...I knew it would be a simple thing. I was looking in all the wrong places. I like that. Quite powerul, yet simple.
Another alternative
If it would help to anyone, the authoring information can be disabled at each content type setting under: "admin/structure/types/manage/your_content_type" > Display setting and uncheck the "Display author and date information.". Another alternative is to set in node.tpl.php the condition "
if ($display_submitted):" to "if (!$display_submitted):"Uh... No... That'll cause a
Uh... No... That'll cause a PHP warning to be thrown on the
print $display_submitted;line below. What you're basically saying is "IF the $display_submitted variable is NOT defined then show it" obviously if it's not defined then you can't show it.Use the advice above and discount this.
Pobster