The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
24 views

how to show the date the node was created?

i have used the format_date() in my template files to try and output the date created. i followed this tutorial http://webwash.net/tutorials/handling-date-and-time-drupal-7 i created a date format ...
0
votes
0answers
20 views

Displaying only 2 digits in the countdown timer field

I am using the Countdown Timer Field. However, If i put in a value for the time to finish as greater than, say 100 days from the day it is created , i see only 2 values appearing. Let say the number ...
1
vote
1answer
159 views

Associating a timer on flag click on individual nodes for individual users

I have a custom field "Time to Finish" in my custom content type in Drupal7. The "Time to Finish" is basically a timer of sorts. whenever the users click a flag (which is placed on nodes of that ...
1
vote
0answers
35 views

How to change Watcher module's time format so it only displays the time in one line?

I am using the Watcher module for a client's site. I am looking for a way to change the time format so instead of saying 2 days 20 hours ago, it says 2 days ago. Of course, it seems to be OK when it ...
1
vote
3answers
134 views

Drupal Time field for hour:minute:second.tenth of a second

Is there a drupal field type to represent time for athletics sports events. e.g. for 100m sprint: 10.42 seconds but for 800m 1:40.89 (1 minute, 40.89 seconds) In the format : hour:minute:second.tenth ...
0
votes
2answers
41 views

Monthly magazine content organising

I have to develop a monthly online magazine and I am looking for suggestions on the best way to organize the content. Since it's a monthly publication, I want to organise content under January, for ...
4
votes
1answer
133 views

Use Timeago date format for less than 24h ago only

I would like to use the Timeago module as a date format. However, when the time ago has exceeded 24h, I would like it to show another format (e.g. 4 Feb, 2013) much like Twitter or Dribbble use. I ...
0
votes
1answer
152 views

Integer field with unix timestamp convert to readable date in views

I have an Integer field in a content type, which contains a unix timestamp. *(It is not a date module field; just a simple Integer field). In a View, I am rendering this field, but obviously it is ...
1
vote
1answer
55 views

Why are responses for AJAX POST calls in admin UI so delayed

Just in the past day or so, something has happened to my site. For some reason, all AJAX calls from Drupal's admin UI are now taking about 50 seconds a piece. This is absolutely maddening because ...
0
votes
0answers
59 views

countdown timer for drupal 6 that works with cache enabled

drupal 6 usere here. I work on a project where I need a countdown timer. I cache all my pages so I am looking for a countdown timer that works with caching enabled. Can you recommend any solution? ...
6
votes
1answer
277 views

Drupal daylight savings issue

My drupal installation is still displaying summer time after the daylight savings switch yesterday. Wrong dates include the following pages: Views displaying nodes with created/updated fields ...
1
vote
0answers
55 views

Date Field shows different times in Frontend and Backend

I have a date field applied to a node. When I set the time in the date field to i.e. 10am and render that date to my website like so: echo date('d.m.Y H:i', ...
2
votes
1answer
142 views

FROM_UNIXTIME(o.created,'%d-%m-%Y') in where clause gives error

I am working on Drupal 6. while executing query when I add and FROM_UNIXTIME(o.created,'%d-%m-%Y') < '".arg(3)."'"; to WHERE clause it doesn't return result. i have tried by using same query in ...
0
votes
1answer
232 views

How to use Drupal unixtime instead of timestamp

What is the proper Drupal way to deal with timestamp fields? I wanted to create two timestamp fields in a MySQL table, but ran into some problems that I can't solve (see this question). So now I ...
0
votes
1answer
130 views

Can I create a table with hook_schema that has two timestamp fields?

For my module I want to create a table with an updated_on and created_on field, both of type timestamp. I found this can be done with mysql_type, but you need to specify a default value for that ...
4
votes
2answers
275 views

Math Expression in Views: Date functions like now()

Is there Date expressions or function? I'd like to calculate a duration between a date field and today ? Is there a now(), today() function? i'd like this kind of math expression: now() - ...
1
vote
2answers
241 views

Publish node for a specific period of time

is there any module which allows user (with a permission) to publish node for a specific period of time? For example, when publishing an article, user decides that it should be published (visible) ...
0
votes
2answers
96 views

Calculate sum in View of ISO-style timestamps

I have a text field on a node type, which the user fills out with a video duration in ISO format (no validation or anything). So, '4:33' or '04:33' would be likely values for this field. The client ...
2
votes
2answers
255 views

How to select every date before now in timestamp?

my database feild type is timestamp here is my code I used it but It also gave me today date I need every date before today "SELECT * FROM {mytable} WHERE date <".$now_timestamp." " please ...
0
votes
1answer
234 views

Timetable for event.

i'm trying to create a timetable using Drupal 7. I need this timetable for an event. At the moment I created it throught views but I think it is too much "heavy". I did it in this way. I created 3 ...
2
votes
2answers
138 views

Create a time span field

The date module provides a handy widget for specifying a date. Is there something similar on Drupal 6 for specifying a length of time such as 6 months or 3 days? The time span will need to be ...
0
votes
0answers
62 views

How to set default time manually?

I am using calender module and going to set up a site. The problem is that the default time on the site can not be set correctly through admin/settings/date-time to reflect the local time. The ...