Board start date MOD

Support for mods released by phpbbmodders.net found at either https://github.com/phpbbmodders/ or the MODDB at http://www.phpbb.com
Forum rules
Please only request support for mods released by phpbbmodders.net found at either https://github.com/phpbbmodders/ or the MODDB at http://www.phpbb.com
martin123456
Old member
Old member
Posts: 677
Joined: 30 Mar 2011, 00:32

Re: Board start date MOD

Postby martin123456 » 09 Aug 2012, 13:51

its some thing like whats on mine :D and thats a donator code you just posted

mikef35
New member
New member
Posts: 38
Joined: 21 Feb 2012, 21:05

Re: Board start date MOD

Postby mikef35 » 09 Aug 2012, 13:56

Thanks,

I know how to implement Stokers, just wondering how Rich did it.

martin123456
Old member
Old member
Posts: 677
Joined: 30 Mar 2011, 00:32

Re: Board start date MOD

Postby martin123456 » 09 Aug 2012, 14:00

He prob done it the same way i did :D

plus im using a bit of stokers and a bit of riches mixed ;) and popped into a collapsible box

mikef35
New member
New member
Posts: 38
Joined: 21 Feb 2012, 21:05

Re: Board start date MOD

Postby mikef35 » 09 Aug 2012, 14:04

Looking at yours, it is the same exact code that is on Stokers. Wraped into his countdown Mod. Yes it works and works fine. As far as I know Rich has not posted his edits.

martin123456
Old member
Old member
Posts: 677
Joined: 30 Mar 2011, 00:32

Re: Board start date MOD

Postby martin123456 » 09 Aug 2012, 14:08

No its not stokers as mine needs a html file and that cant be seen ;) as i said stokers and rich's ;) and your right rich has not released his but he did post a small bit of code that gave me an idea and i used it.

here is the file in question http://www.blades-place.com/styles/pros ... _info.html its hidden just like css is and wont show on viewsource

try view-source:www.blades-place.com/styles/prosilver/template/ip_info.html for your browser

if rich and stoker agree i'l post it.
Last edited by martin123456 on 09 Aug 2012, 14:15, edited 1 time in total.

mikef35
New member
New member
Posts: 38
Joined: 21 Feb 2012, 21:05

Re: Board start date MOD

Postby mikef35 » 09 Aug 2012, 14:14

This is what is running your countdown, I am looking for a different way.

Code: Select all

$(document).ready(function(){
   $("#online").countdown({
      date: "07 Aug 2012, 00:48:13",
      leadingZero: true,
      offset: -1,
      yearsAndMonths: true,
      htmlTemplate: "<span class='cd-online'>and in existence for</span> <strong>%y</strong> <span class=\"cd-online\">Years</span> <strong>%m</strong> <span class=\"cd-online\">Months</span>  <strong>%d</strong> <span class=\"cd-online\">Days</span> <strong>%h</strong> <span class=\"cd-online\">Hours</span> <strong>%i</strong> <span class=\"cd-online\">Minutes</span> <strong>%s</strong> <span class=\"cd-online\">Seconds</span>",
      direction: "up"
   });

martin123456
Old member
Old member
Posts: 677
Joined: 30 Mar 2011, 00:32

Re: Board start date MOD

Postby martin123456 » 09 Aug 2012, 14:17

sorry its not but its apart of it that can be seen . thats one of stokers donator snippets in the overalheader :D :D
Last edited by martin123456 on 09 Aug 2012, 14:18, edited 1 time in total.

mikef35
New member
New member
Posts: 38
Joined: 21 Feb 2012, 21:05

Re: Board start date MOD

Postby mikef35 » 09 Aug 2012, 14:18

ok, you win! Thats what is not running yours. Maybe Rich will release his later.

martin123456
Old member
Old member
Posts: 677
Joined: 30 Mar 2011, 00:32

Re: Board start date MOD

Postby martin123456 » 09 Aug 2012, 14:59

cough where is the board start date and phpbb version in that donator code you posted ? i dont see them do you ?

that code would show like this > we have been online for 04 Years 02 Months 27 Days 15 Hours 35 Minutes 22 seconds as its ment too. but yeah i did change the wording on it but still there is no board start date
Last edited by martin123456 on 09 Aug 2012, 15:05, edited 1 time in total.

mikef35
New member
New member
Posts: 38
Joined: 21 Feb 2012, 21:05

Re: Board start date MOD

Postby mikef35 » 09 Aug 2012, 15:02

mchatuser wrote:cough where is the board start date and phpbb version in that donator code you posted ? i dont see them do you ?



Don't want those just the time, I got it working the way I want now.

PS. Thats why I did not post the whole code.

User avatar
RMcGirr83
Past Contributor
Past Contributor
Posts: 6243
Joined: 30 Nov 2006, 14:23
Real name: Rich McGirr

Re: Board start date MOD

Postby RMcGirr83 » 09 Aug 2012, 15:40

mikef35 wrote:This is what is running your countdown, I am looking for a different way.

Code: Select all

$(document).ready(function(){
   $("#online").countdown({
      date: "07 Aug 2012, 00:48:13",
      leadingZero: true,
      offset: -1,
      yearsAndMonths: true,
      htmlTemplate: "<span class='cd-online'>and in existence for</span> <strong>%y</strong> <span class=\"cd-online\">Years</span> <strong>%m</strong> <span class=\"cd-online\">Months</span>  <strong>%d</strong> <span class=\"cd-online\">Days</span> <strong>%h</strong> <span class=\"cd-online\">Hours</span> <strong>%i</strong> <span class=\"cd-online\">Minutes</span> <strong>%s</strong> <span class=\"cd-online\">Seconds</span>",
      direction: "up"
   });


Uhmmm, yeah that isn't the code I am using.

mikef35
New member
New member
Posts: 38
Joined: 21 Feb 2012, 21:05

Re: Board start date MOD

Postby mikef35 » 09 Aug 2012, 16:08

Rich,

I meant that is what is on his board. I got it figured out using your original package from this thread. Probably not the same way you have it, but it is working for now.

martin123456
Old member
Old member
Posts: 677
Joined: 30 Mar 2011, 00:32

Re: Board start date MOD

Postby martin123456 » 09 Aug 2012, 16:52

RMcGirr83 wrote:
mikef35 wrote:This is what is running your countdown, I am looking for a different way.

Code: Select all

$(document).ready(function(){
   $("#online").countdown({
      date: "07 Aug 2012, 00:48:13",
      leadingZero: true,
      offset: -1,
      yearsAndMonths: true,
      htmlTemplate: "<span class='cd-online'>and in existence for</span> <strong>%y</strong> <span class=\"cd-online\">Years</span> <strong>%m</strong> <span class=\"cd-online\">Months</span>  <strong>%d</strong> <span class=\"cd-online\">Days</span> <strong>%h</strong> <span class=\"cd-online\">Hours</span> <strong>%i</strong> <span class=\"cd-online\">Minutes</span> <strong>%s</strong> <span class=\"cd-online\">Seconds</span>",
      direction: "up"
   });


Uhmmm, yeah that isn't the code I am using.



thats a bit of stokers donator snip hence the bit part

Potku
New member
New member
Posts: 42
Joined: 21 Dec 2008, 11:22

Re: Board start date MOD

Postby Potku » 23 Dec 2012, 10:32

Guys, how do I fix this little problem? :)

Code: Select all

Forum started on Dec 22, 2004, 17.26 and in existence for 8 Years3 Days •

User avatar
RMcGirr83
Past Contributor
Past Contributor
Posts: 6243
Joined: 30 Nov 2006, 14:23
Real name: Rich McGirr

Re: Board start date MOD

Postby RMcGirr83 » 23 Dec 2012, 11:20

What problem?


Return to “Modders MOD support”

Who is online

Users browsing this forum: CommonCrawl [Bot] and 1 guest