WebSite X5Help Center

 
Cuong N.
Cuong N.
User

Automatic addition of date to post  en

Autor: Cuong N.
Visited 262, Followers 2, Udostępniony 0  

Hi all,

Please advise how I can set the date to be automatically added to the post? Many thanks

Cuong

Posted on the
10 ODPOWIEDZI - 1 POMOCNY
Aleksej H.
Aleksej H.
Moderator

Hello. The date is automatically added to the blog post.

Czytaj więcej
Posted on the from Aleksej H.
Cuong N.
Cuong N.
User
Autor
Aleksej H.
Hello. The date is automatically added to the blog post.

Is there a way for adding date to page automatically?

Czytaj więcej
Posted on the from Cuong N.
Incomedia
Elisa B.
Incomedia

Hi Cuong, 

I fear you would need to use extra code for this function, I am sorry about this. 

Thanks! Kind regards.

Czytaj więcej
Posted on the from Elisa B.
Axel  
Axel  
User

Hello Cuong,

You can add this code into an HTML object on your page

<script>
document.getElementById("Aujourdhui").valueAsDate = new Date();
</script>

and the display will be !

Axel

Czytaj więcej
Posted on the from Axel  
Cuong N.
Cuong N.
User
Autor

Many thanks Axel for your suppport. I did, but I dont see the date appear. I changed the page from html to php and vice versa but it didnt work.

Cuong

Czytaj więcej
Posted on the from Cuong N.
 ‪ KolAsim ‪ ‪
 ‪ KolAsim ‪ ‪
Moderator
Najlepszy Użytkownik miesiąca FRNajlepszy Użytkownik miesiąca PL

... which date...?...
... today's...!?...
... or the modification date...!?...

.

Czytaj więcej
Posted on the from  ‪ KolAsim ‪ ‪
Cuong N.
Cuong N.
User
Autor
 ‪ KolAsim ‪ ‪
... which date...?... ... today's...!?... ... or the modification date...!?... .

Hi KolAsim, the best is the today's date, but the date can be modified (as I understood your modification date) is also ok.

Thank you in advance.

Cuong

Czytaj więcej
Posted on the from Cuong N.
 ‪ KolAsim ‪ ‪
 ‪ KolAsim ‪ ‪
Moderator
Najlepszy Użytkownik miesiąca FRNajlepszy Użytkownik miesiąca PL
Cuong N.
... ... ... Hi KolAsim, the best is the today's date, ... ... ... 

... OK ... paste this code into an HTML Code Object, or into an HTML-enabled Text Object [</>]:

<p id="dateK"> K </p>
<script>
dateK = new Date();
yearK = dateK.getFullYear();
monthK = dateK.getMonth() + 1;
dayK = dateK.getDate();
document.getElementById("dateK").innerHTML = "Welcome, today is the day " + monthK + "/" + dayK + "/" + yearK;
</script>

.

ciao

.

Czytaj więcej
Posted on the from  ‪ KolAsim ‪ ‪
Cuong N.
Cuong N.
User
Autor

Thank you very much, KolAsim.

Czytaj więcej
Posted on the from Cuong N.