Advance countdown timer help
Forumsregeln
Auch wenn hier der Support für phpBB 2 weiterhin aufrecht erhalten bleibt, weisen wir darauf hin, dass das phpBB 2 nicht mehr offiziell unterstützt und weiterentwickelt wird!
Auch wenn hier der Support für phpBB 2 weiterhin aufrecht erhalten bleibt, weisen wir darauf hin, dass das phpBB 2 nicht mehr offiziell unterstützt und weiterentwickelt wird!
Advance countdown timer help
I really like the advanced countdown script. I have successfully installed the script and it's working great, but I would like to know if it could display the text "days - hr : min : secs" along with the numbers. I was wondering if someone could possibly please explain to me how this could be done, I would really appreciate it. I would also like to know how to change the font size for where it says "Remaining days" or possibly even changing it to say remaining time.
- oxpus
- Administrator
- Beiträge: 28735
- Registriert: Mo 27.Jan, 2003 22:13
- Wohnort: Bad Wildungen
- Kontaktdaten:
On ACP you can enable/disable the full time string.
This will decode by "GetElementById" and so be setted with the current value.
Renaming the text you can do in the lang_countdown.php.
Formatting the text can be done on overall_header.tpl. There you can use another/new CSS-classes or format the text directly there by other CSS-style definitions.
This will decode by "GetElementById" and so be setted with the current value.
Renaming the text you can do in the lang_countdown.php.
Formatting the text can be done on overall_header.tpl. There you can use another/new CSS-classes or format the text directly there by other CSS-style definitions.
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
- oxpus
- Administrator
- Beiträge: 28735
- Registriert: Mo 27.Jan, 2003 22:13
- Wohnort: Bad Wildungen
- Kontaktdaten:
Try this:
Code: Alles auswählen
#
#-----[ OPEN ]------------------------------------------
#
includes/page_header.php
#
#-----[ FIND ]------------------------------------------
#
'FULL_DISPLAY' => ''));
#
#-----[ REPLACE WITH ]------------------------------------------
#
'HOURS' => $lang['CT_Hours'],
'MINUTES' => $lang['CT_Minutes'],
'SECONDS' => $lang['CT_Seconds'],
'FULL_DISPLAY' => ''));
#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/overall_header.tpl
#
#-----[ FIND ]------------------------------------------
#
{L_DAYS} <input name="days" class="post" size=4 style="border: 0px">
<span style="display: {FULL_DISPLAY};">-
<input name="hours" class="post" size=2 style="border: 0px"> :
<input name="mins" class="post" size=2 style="border: 0px"> :
<input name="secs" class="post" size=2 style="border: 0px">
#
#-----[ REPLACE WITH ]------------------------------------------
#
<input name="days" class="post" size=4 style="border: 0px"> {L_DAYS}
<span style="display: {FULL_DISPLAY};">-
<input name="hours" class="post" size=2 style="border: 0px"> {HOURS} :
<input name="mins" class="post" size=2 style="border: 0px"> {MINUTES} :
<input name="secs" class="post" size=2 style="border: 0px"> {SECONDS}
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_main.php
#
#-----[ FIND ]------------------------------------------
#
?>
#
#-----[ BEFORE, ADD ]------------------------------------------
#
$lang['CT_Hours'] = 'hrs';
$lang['CT_Minutes'] = 'min';
$lang['CT_Seconds'] = 'sec';
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoMKarsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
I am getting this error now
Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ']' in /home/mojojojo/public_html/forum/language/lang_english/lang_main.php on line 1331
This is what's on line 1331
Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ']' in /home/mojojojo/public_html/forum/language/lang_english/lang_main.php on line 1331
This is what's on line 1331
Code: Alles auswählen
$lang[CT_Hours'] = 'hrs';- oxpus
- Administrator
- Beiträge: 28735
- Registriert: Mo 27.Jan, 2003 22:13
- Wohnort: Bad Wildungen
- Kontaktdaten:
Oh sorry, i forgotten the formatting.
Use this:
Use this:
Code: Alles auswählen
<span class="genmed">{L_DAYS}</span> <input name="days" class="post" size=4 style="border: 0px">
<span style="display: {FULL_DISPLAY};">- <input name="hours" class="post" size=2 style="border: 0px"> <span class="genmed">{HOURS}</span>
<input name="mins" class="post" size=2 style="border: 0px"> <span class="genmed">{MINUTES}</span>
<input name="secs" class="post" size=2 style="border: 0px"> <span class="genmed">{SECONDS}</span> Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
- oxpus
- Administrator
- Beiträge: 28735
- Registriert: Mo 27.Jan, 2003 22:13
- Wohnort: Bad Wildungen
- Kontaktdaten:
Like this:
Code: Alles auswählen
<input name="days" class="post" size=4 style="border: 0px"> <span class="genmed">{L_DAYS}</span>Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
- oxpus
- Administrator
- Beiträge: 28735
- Registriert: Mo 27.Jan, 2003 22:13
- Wohnort: Bad Wildungen
- Kontaktdaten:
Then this:
Code: Alles auswählen
<span class="genmed">{L_DAYS}</span> <input name="days" class="post" size=4 style="border: 0px"> <span class="genmed">days</span>Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
Well, I'm going to save creating a new thread, as my post is along the same sort of lines, and again I dont speak german..
I've installed the Advanced countdown mod on a phpBB2 plus 1.5 board... Now these are probably easily curable, but I'd like help woth two things -
1, How do I remove the Javascript pop-ups?
2, The mod looks like it is all there, the layout is good, its all present in the ACP & i've run the SQL query, but it's not displaying the actual countdown - no times or dats, just lots of -- -- --. Is there a seperate mod I need to install prior to this one? An incompatibility with the Plus version of phpBB? Or am i just missing something obvious? Any help would be appreciated
I've installed the Advanced countdown mod on a phpBB2 plus 1.5 board... Now these are probably easily curable, but I'd like help woth two things -
1, How do I remove the Javascript pop-ups?
2, The mod looks like it is all there, the layout is good, its all present in the ACP & i've run the SQL query, but it's not displaying the actual countdown - no times or dats, just lots of -- -- --. Is there a seperate mod I need to install prior to this one? An incompatibility with the Plus version of phpBB? Or am i just missing something obvious? Any help would be appreciated
- oxpus
- Administrator
- Beiträge: 28735
- Registriert: Mo 27.Jan, 2003 22:13
- Wohnort: Bad Wildungen
- Kontaktdaten:
1. You can find on page_header.php the line
Just delete it and the popup is gone.
2. The mod also run on a phpBB2 plus. Does you have install the newest release? Compare with the release you can find here under the downloads.
Be sure you have edit the >body>-Tag in the overall_header.tpl!
Code: Alles auswählen
alert("'.$event_text.'");2. The mod also run on a phpBB2 plus. Does you have install the newest release? Compare with the release you can find here under the downloads.
Be sure you have edit the >body>-Tag in the overall_header.tpl!
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!