inherit
243515
0
Jun 7, 2017 14:51:24 GMT -8
Keen - Summit of Legends
142
April 2017
keenbean
|
Post by Keen - Summit of Legends on Apr 13, 2017 14:49:42 GMT -8
ahahaha so how do i combine those? XD
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on Apr 13, 2017 15:44:55 GMT -8
ahahaha so how do i combine those? XD Install my plugin and put that code in your global header in the admin-structure
|
|
inherit
243515
0
Jun 7, 2017 14:51:24 GMT -8
Keen - Summit of Legends
142
April 2017
keenbean
|
Post by Keen - Summit of Legends on Apr 14, 2017 4:26:56 GMT -8
ill try XD
EDIT: eee it worked! It's just the time, and not the date as well, but it made me feel much more tech savvy than I really am to do that XD Any way to get the date too?
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on Apr 14, 2017 13:47:19 GMT -8
I believe there is a class you can add onto an empty span tag that proboards will automatically insert the date. The code you may ask? Well I'm not at a PC to figure it out right now haha
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on Apr 14, 2017 19:07:47 GMT -8
ill try XD EDIT: eee it worked! It's just the time, and not the date as well, but it made me feel much more tech savvy than I really am to do that XD Any way to get the date too? <div class="container">
<div class="title-bar"><div align="center"><h2>Server Time</h2></div></div>
<div class="content" style="padding: 10px;">
<div align="center"> <div id="uctxt"></div><span class="ucdate"></span></div>
</div>
</div> <script>$('.ucdate').html(' '+pb.data('serverDate').getDate()+'/'+(pb.data('serverDate').getMonth()+1)+'/'+pb.data('serverDate').getUTCFullYear())</script> Try that code instead. Haven't tested it
|
|
inherit
243515
0
Jun 7, 2017 14:51:24 GMT -8
Keen - Summit of Legends
142
April 2017
keenbean
|
Post by Keen - Summit of Legends on Apr 16, 2017 9:29:59 GMT -8
Nope, still just the time.
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on Apr 17, 2017 2:49:10 GMT -8
Nope, still just the time. Are you sure you copied the new code with the new span tag? Where are you placing this code again?
|
|
inherit
243515
0
Jun 7, 2017 14:51:24 GMT -8
Keen - Summit of Legends
142
April 2017
keenbean
|
Post by Keen - Summit of Legends on Apr 17, 2017 19:54:38 GMT -8
I copied everything you posted:
<div class="container">
<div class="title-bar"><div align="center"><h2>Server Time</h2></div></div>
<div class="content" style="padding: 10px;">
<div align="center"> <div id="uctxt"></div><span class="ucdate"></span></div>
</div>
</div> <script>$('.ucdate').html(' '+pb.data('serverDate').getDate()+'/'+(pb.data('serverDate').getMonth()+1)+'/'+pb.data('serverDate').getUTCFullYear())</script>
I put it in the same place as before, in the global header html box. I did remove the previous content to do so; should I have left it there?
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on Apr 19, 2017 16:49:20 GMT -8
I copied everything you posted: <div class="container">
<div class="title-bar"><div align="center"><h2>Server Time</h2></div></div>
<div class="content" style="padding: 10px;">
<div align="center"> <div id="uctxt"></div><span class="ucdate"></span></div>
</div>
</div> <script>$('.ucdate').html(' '+pb.data('serverDate').getDate()+'/'+(pb.data('serverDate').getMonth()+1)+'/'+pb.data('serverDate').getUTCFullYear())</script> I put it in the same place as before, in the global header html box. I did remove the previous content to do so; should I have left it there? removing everything was fine, however I don't see the new code you quoted here in that box. You are still missing < span class="ucdate" >< /span > and the script
|
|
inherit
243515
0
Jun 7, 2017 14:51:24 GMT -8
Keen - Summit of Legends
142
April 2017
keenbean
|
Post by Keen - Summit of Legends on Apr 20, 2017 8:32:57 GMT -8
I copied everything you posted: <div class="container">
<div class="title-bar"><div align="center"><h2>Server Time</h2></div></div>
<div class="content" style="padding: 10px;">
<div align="center"> <div id="uctxt"></div><span class="ucdate"></span></div>
</div>
</div> <script>$('.ucdate').html(' '+pb.data('serverDate').getDate()+'/'+(pb.data('serverDate').getMonth()+1)+'/'+pb.data('serverDate').getUTCFullYear())</script> I put it in the same place as before, in the global header html box. I did remove the previous content to do so; should I have left it there? removing everything was fine, however I don't see the new code you quoted here in that box. You are still missing < span class="ucdate" >< /span > and the script I literally copied the code you gave me and put it there, so whatever you see is what you wrote to me X3
|
|
inherit
First Contributor
66253
0
Mar 18, 2024 11:09:20 GMT -8
aRMY83
2,925
December 2005
army83
|
Post by aRMY83 on Apr 20, 2017 10:53:40 GMT -8
Hello Keen - Summit of Legends Since you have this coding from P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ below: <div class="container"> <div class="title-bar"><div align="center"><h2>Server Time</h2></div></div> <div class="content" style="padding: 10px;"> <div align="center"> <div id="uctxt"></div><span class="ucdate"></span></div> </div> </div> <script>$('.ucdate').html(' '+pb.data('serverDate').getDate()+'/'+(pb.data('serverDate').getMonth()+1)+'/'+pb.data('serverDate').getUTCFullYear())</script> that any further Server Time discussions be addressed over at his support thread: support.proboards.com/thread/544824/Date and Time Clock II plugin is not a Server Time plugin and don't want anyone reading this support thread to think otherwise.
|
|
inherit
167709
0
Sept 25, 2018 7:21:22 GMT -8
SailorEffinMoon
I think it's really cool how the word "OK" is a sideways person!
244
June 2011
cameronnat
|
Post by SailorEffinMoon on Dec 1, 2017 6:23:17 GMT -8
Any way of making it only appear on the HOME page?
|
|
inherit
First Contributor
66253
0
Mar 18, 2024 11:09:20 GMT -8
aRMY83
2,925
December 2005
army83
|
Post by aRMY83 on Dec 1, 2017 7:45:24 GMT -8
Hello SailorEffinMoonThis is doable but will wait until after the v6 is implemented.This plugin will be updated within a day or so to allow the placement choice of either Main or Global header and then sent to the Plugin Library for approval.
|
|
inherit
First Contributor
66253
0
Mar 18, 2024 11:09:20 GMT -8
aRMY83
2,925
December 2005
army83
|
Post by aRMY83 on Dec 3, 2017 16:48:57 GMT -8
|
|
inherit
167709
0
Sept 25, 2018 7:21:22 GMT -8
SailorEffinMoon
I think it's really cool how the word "OK" is a sideways person!
244
June 2011
cameronnat
|
Post by SailorEffinMoon on Dec 4, 2017 7:07:18 GMT -8
Perfect. I rated it 5 stars. Thanks again!
|
|