Hi, "drupallers":
When I use drupal to create some pages in the class "category", there is always a time record for each item (please see the example below). Could you please give me some suggestion how to remove it??
It's urgent for me!
Thank you at first!
I will waiting for your help online!

Comments

geming@xuede.com’s picture

Category
recruit (1)
23 hours 46 min ago

patrickharris’s picture

Since nobody has helped out here, it appears that Drupal is inflexible, and hard to modify (without altering themes on a sitewide basis).

Bèr Kessels’s picture

We are not here to help you on your demand, patric, so behave polite, please!

---
if you dont like the choices being made for you, you should start making your own.
---
[Bèr Kessels | Drupal services www.webschuur.com]

Bèr Kessels’s picture

You can set this under admin >> themes.

---
if you dont like the choices being made for you, you should start making your own.
---
[Bèr Kessels | Drupal services www.webschuur.com]

davec611’s picture

Ber,

I have the same problem and have been looking for a way to eliminate the time stamp for a while. I cannot find any setting under admin >> themes, admin >> categories, or anywhere else.

I am using 4.5, so if this feature is only as of 4.6, then I am out of luck. However if it is in 4.5, can you tell me more precisely how to find it?

Thanks for your help.

Davec

Forest Lake Online

patrickharris’s picture

Hi Bèr - sorry, I didn't mean to sound rude. As a newbie to Drupal, it's disconcerting to see questions like these in the forum left unanswered for months.

sepeck’s picture

Actually this is answered in the forums quite a bit. There is also a lot of traffic so various forum questions slide past the radar quickly. There are only so many people answering questions in their spare time. You can answer them yourself if you stick around.

To be honest, it's always disconceting when someone finds a missed thread buried in the forums and then uses it to air disparaging opinions of the product when many of us have answered the same question more htna once.

Ulitmatly though, you have to decide if the investment in Drupal is worth it for your environment. It probably is, but that's not mine to answer. :)

-sp
---------
Test site...always start with a test site.
Drupal Best Practices Guide

-Steven Peck
---------
Test site, always start with a test site.
Drupal Best Practices Guide

davec611’s picture

Obvioudly Sepeck wanted to make us work for this. So I did do a search (which I had done unsuccessfully before), and eureka, came up with this:

http://drupal.org/node/17885

I made the code change and it is working so far. ( I can only vouch for 4.5)

Thanks for the mental push, Sepeck

As far as I know there is no way to limit 'search' to a section of the drupal site. This could really help as it could reduce the number of false leads you need to wade through to find an answer.

Just a thought

Davec

Forest Lake Online

patrickharris’s picture

sepeck - I completely understand your point, but as davec said, searching the forum isn't always straightforward.

Part of the frustration for me lies in Drupal's initial un-intuitiveness, partly due to the terminology (in comparison to say, WordPress). After several days, I'm still uncertain as to the best way to organize static pages in a heriachy ... should I use articles, nodes, book module?

Back to more searches ...

bonobo’s picture

check the "Display post information" under ?q=admin/themes/settings. The checkboxes there will add or remove the poster's name and the time the node was posted. If you just want to remove one of those pieces of info (ie, keep the name, lose the time) you will probably (to the best of my knowledge) need to adjust this in the code for the individual modules.

This is not that difficult -- I know very little PHP, and I was able to adjust the text displayed by the image.module. I did it through a lot of trial and error (mostly error), but by the time I had finished I knew a lot more about PHP and Drupal, so I felt I had gained something for my time.

RE the Drupal community being cold/unfriendly/etc -- we all have or own experiences. From my experience with Drupal, you can get good answers to your questions using the forums. But, sometimes it will be faster to slog through a test site, make mistakes, learn from them, and go on from there. And, the other advantage of searching the forums and working through the issue on the test site is that you get a much clearer sense of what Drupal can and can't do.

RE Drupal's un-intuitiveness: this is where experimenting with test sites helped me enormously. As I became more familiar with how Categories "contain" Terms, the organizational structure began to make more sense. In other words, what started as un-intuitive became intuitive -- it just took some time and thought.

Anyways. My .02

Cheers,

Bonobo

sepeck’s picture

Wordpress confuses me but it is also a simpler product with it's odd terminology. It is focused on blogging and does that very well. Drupal has blogging capabilities as a component and modules that extend it, but is not focused on it. Virtually every term Drupal uses can be googled or found on wikipedia. :)

As to what node type you should use, well, that depends and you will have to experiment to find out what combination of modules works for you. There are a ton of contrib modules, well over a hundred. You will need to figure which combination works for you.

These are the standard modules I use on a default site install. blog, blogapi, help, image, menu, node, page, path, search , statistics, taxonomy, tracker. add from contributed modules image module, database module and interwiki. I use Page for 'static' content. I use blog for transitory content and announcements. Of course, now, what types of sites do I do and are they same as yours? Does knowing my standard use modules help you?

Drupal is very easy to install, Drupal has some very flexible capabilities. Say you had some colored paper, a pencil, a crayon and an ink pen. You to draw a building. How do you do it? With the pen, then pencil, the crayons? Whch color of paper do you use? Single story, two story? You need to have a goal and you need to spend some time getting familier with the tools you intend to use.

Drupal's power is in it's core simplicity and flexibility. The price of that simplicity is you have to learn and become familier with the tool. You can task assemble specific pieces to have a focused web site with a variety of off the shelf core and contributed modules without even needing to know php. If you know php, then you can extend your customization even further.

--
As to the other gentleman's comment that I wanted him to 'work' for the answer.... well, I was only providing information as to why some questions are left unanswered, not actually answering the original question. Ironically one of my earliest questions when I first joined was in a similier vein. It's only now looking at the link he posted that I realize the answer may not be correct for his situation. In generaly, modifying core modules an be avoided so that it doesn't come back to haunt you during upgrades :). In general, Drupal seperates content from display of content. Most display of information is controlled by the theme. More information on theme's is in the handbook. Find the variable displaying the information you dont want/need and remove it and adjust the surrounding text. In order to actually answer the original question, we would need to know the theme being used.

-sp
---------
Test site...always start with a test site.
Drupal Best Practices Guide

-Steven Peck
---------
Test site, always start with a test site.
Drupal Best Practices Guide

patrickharris’s picture

Thanks bonobo and sepeck for those comments - I appreciate your help.