Other way round this should be the solution: viewtopic.php?p=7870#p7870derkubi wrote:2. Can i change the date from [1.4] to [4.1.2009] or [4.Jan.2009]?
Calendar block for phpBB Calendar 0.0.8
Forum rules
This forum is not for support requests.
Only post Modifications for Board3 Portal 1.0.x in this forum.
This forum is not for support requests.
Only post Modifications for Board3 Portal 1.0.x in this forum.
-
- Site Admin
- Posts: 2989
- Joined: 7. January 2006 20:11
- phpBB.de User: Saint
- phpBB.com User: Saint_hh
- Location: Hamburg
- Contact:
Re: Calendar block for phpBB Calendar 0.0.8
~~~ They say the definition of madness is doing the same thing and expecting a different result ~~~
Kein Support per PN / No support via PM!
Kein Support per PN / No support via PM!
-
- Translator
- Posts: 55
- Joined: 18. December 2008 01:39
- phpBB.com User: wang5555
- Location: Taiwan
Re: Calendar block for phpBB Calendar 0.0.8
1. Please paste style BF-VISTA download link.derkubi wrote:Hello
Two questions :
1. Under style BF-VISTA the block is transparent .
2. Can i change the date from [1.4] to [4.1.2009] or [4.Jan.2009]?
2. Try it:
#
#-----[ OPEN ]-----
#
includes/functions_calendar.php
#
#-----[ FIND ]-----
#
Code: Select all
$event_output['NUMBER'] = $dayOfEvent["mon"].".".$dayOfEvent["mday"]."";
#-----[ REPLACE WITH ]-----
#
Code: Select all
$event_output['NUMBER'] = $dayOfEvent["mday"].".".$dayOfEvent["mon"].".".$dayOfEvent["year"]."";
#-----[ SAVE & CLOSE ]-----
#
It is more blessed to give than to reveive, welcome to letter, thanks & good-bye!
Good luck ^_^
Welcome to visit my forum!!
https://wang5555.dnsfor.me/phpBB3/
p.s. Shut down computer before 11 clock night!!!
Good luck ^_^
Welcome to visit my forum!!
https://wang5555.dnsfor.me/phpBB3/
p.s. Shut down computer before 11 clock night!!!
Re: Calendar block for phpBB Calendar 0.0.8
ty , works fine .....
You can find BF-Vista here : http://www.phpbb.com/community/viewtopi ... b5da2c1a74 , but i am using the 3.0.0 version
Here are 2 links :
original board3portal minical-block without transparency
http://dienstagstruppe.pytalhost.com/we ... lendar.txt
and the calendar0.0.8 portal block with transparency
http://dienstagstruppe.pytalhost.com/we ... lendar.txt
think you need only these two files to help ....
You can find BF-Vista here : http://www.phpbb.com/community/viewtopi ... b5da2c1a74 , but i am using the 3.0.0 version
Here are 2 links :
original board3portal minical-block without transparency
http://dienstagstruppe.pytalhost.com/we ... lendar.txt
and the calendar0.0.8 portal block with transparency
http://dienstagstruppe.pytalhost.com/we ... lendar.txt
think you need only these two files to help ....
-
- Translator
- Posts: 55
- Joined: 18. December 2008 01:39
- phpBB.com User: wang5555
- Location: Taiwan
Re: Calendar block for phpBB Calendar 0.0.8
Try it--Add class="row2":derkubi wrote:ty , works fine .....
You can find BF-Vista here : http://www.phpbb.com/community/viewtopi ... b5da2c1a74 , but i am using the 3.0.0 version
Here are 2 links :
original board3portal minical-block without transparency
http://dienstagstruppe.pytalhost.com/we ... lendar.txt
and the calendar0.0.8 portal block with transparency
http://dienstagstruppe.pytalhost.com/we ... lendar.txt
think you need only these two files to help ....
#
#-----[ OPEN ]-----
#
styles/YOUR_THEME/template/portal/block/calendar.html
#
#-----[ FIND ]-----
#
Code: Select all
<table class="tablebg" cellspacing="1" cellpadding="0" width="100%">
<tr>
<td align="left" colspan="2"><!-- IF CALENDAR_PREV_MINI -->{CALENDAR_PREV_MINI}</a><!-- ENDIF --></td>
<td colspan="3" align="center"><span class="genmed">{CALENDAR_HEADER_MINI}</span></td>
<td align="right" colspan="2"><!-- IF CALENDAR_NEXT_MINI -->{CALENDAR_NEXT_MINI}</a><!-- ENDIF --></td>
</tr>
</table>
#-----[ RPLACE WITH ]-----
#
Code: Select all
<table class="tablebg" cellspacing="1" cellpadding="0" width="100%">
<tr class="row2">
<td align="left" colspan="2"><!-- IF CALENDAR_PREV_MINI -->{CALENDAR_PREV_MINI}</a><!-- ENDIF --></td>
<td colspan="3" align="center"><span class="genmed">{CALENDAR_HEADER_MINI}</span></td>
<td align="right" colspan="2"><!-- IF CALENDAR_NEXT_MINI -->{CALENDAR_NEXT_MINI}</a><!-- ENDIF --></td>
</tr>
</table>
#-----[ FIND ]-----
#
Code: Select all
</tr>
<!-- BEGIN mini_calendar_days -->
<!-- IF mini_calendar_days.START_WEEK -->
<tr>
#-----[ RPLACE WITH ]-----
#
Code: Select all
</tr>
<!-- BEGIN mini_calendar_days -->
<!-- IF mini_calendar_days.START_WEEK -->
<tr class="row2">
#-----[ SAVE & CLOSE ]-----
#
P.S.
Purge the cache.
It is more blessed to give than to reveive, welcome to letter, thanks & good-bye!
Good luck ^_^
Welcome to visit my forum!!
https://wang5555.dnsfor.me/phpBB3/
p.s. Shut down computer before 11 clock night!!!
Good luck ^_^
Welcome to visit my forum!!
https://wang5555.dnsfor.me/phpBB3/
p.s. Shut down computer before 11 clock night!!!
Re: Calendar block for phpBB Calendar 0.0.8
Ty wang , perfect ...
Re: Calendar block for phpBB Calendar 0.0.8
Hey Guys,
For some reason events are not shown in the calendar...
(i have the Calendar mod 0.0.8 yes... i have done the required options for the block... added it to the portal and it is showing correct...)
when i click on it, the calendar indeed opens... (correct month etc...)
only thing not showing is the events i added to the calendar..
where could i have gone wrong ?
edit : The link where it should say "Calendar" also shows as { MINI_CAL_CALENDAR } ...???
EDIT 2 : GOT IT WORKING i made a mistake... duh
Regards
Joeri
For some reason events are not shown in the calendar...
(i have the Calendar mod 0.0.8 yes... i have done the required options for the block... added it to the portal and it is showing correct...)
when i click on it, the calendar indeed opens... (correct month etc...)
only thing not showing is the events i added to the calendar..
where could i have gone wrong ?
edit : The link where it should say "Calendar" also shows as { MINI_CAL_CALENDAR } ...???
EDIT 2 : GOT IT WORKING i made a mistake... duh
Regards
Joeri
Re: Calendar block for phpBB Calendar 0.0.8
If I disable the default Board3 mini calendar (which anyone who installs this mod would obviously do) the name in the block header changes from Calendar to { MINI_CAL_CALENDAR }. But if I enable the mini calendar both have the Calender name displayed. Is this a bug or have I made a mistake somewhere?
*EDIT* Solved it by the fix posted below */EDIT*
*EDIT* Solved it by the fix posted below */EDIT*
Last edited by Onetimer on 15. January 2009 04:52, edited 1 time in total.
Re: Calendar block for phpBB Calendar 0.0.8
Calendar 0.0.8 block and Mini Calander block seem to both use the same L_MINI_CAL_CALENDAR, right? The Calendar 0.0.8 block should have used the L_CALENDAR tag instead, I think?
I solved the above problem by exchanging the two instances of L_MINI_CAL_CALENDAR to L_CALENDAR in calendar.html.
I solved the above problem by exchanging the two instances of L_MINI_CAL_CALENDAR to L_CALENDAR in calendar.html.
Re: Calendar block for phpBB Calendar 0.0.8
hallo,
kann jemand die zum Einbinden des Blocks benötigten Daten mal zusammen fassen?
Es sind mittlerweile so viele Fragen/Probleme hier drin dass ich nicht mehr durchblicke.......
Danke
kann jemand die zum Einbinden des Blocks benötigten Daten mal zusammen fassen?
Es sind mittlerweile so viele Fragen/Probleme hier drin dass ich nicht mehr durchblicke.......
Danke
Re: Calendar block for phpBB Calendar 0.0.8
hmmm...... schade eigentlich........
Grüße
Grüße
Re: Calendar block for phpBB Calendar 0.0.8
Hallo!
Bei mir werden Termine im Block nicht angezeigt, wenn sie nicht im aktuellen Monat stattfinden. Sprich, jetzt ist Januar und ein Termin im Juni wird nicht angezeigt. Wenn ich mich bis Juni vorarbeite, wird dann auch der Termin angezeigt. Wie kann man das ändern?
Gruß Steppe
Bei mir werden Termine im Block nicht angezeigt, wenn sie nicht im aktuellen Monat stattfinden. Sprich, jetzt ist Januar und ein Termin im Juni wird nicht angezeigt. Wenn ich mich bis Juni vorarbeite, wird dann auch der Termin angezeigt. Wie kann man das ändern?
Gruß Steppe
Re: Calendar block for phpBB Calendar 0.0.8
Nice work on this one guys.
Last edited by mk1200 on 4. February 2009 17:04, edited 2 times in total.
Re: Calendar block for phpBB Calendar 0.0.8
I installed this block and all days look the same. Is there a ways to have the current day in another color or something like this, so people can see which day it is? (proSilver)
Thanks in advance.
Thanks in advance.
Re: Calendar block for phpBB Calendar 0.0.8
Ich finde die Datei absolut nicht die gibts bei mir einfach nicht -.- und nu ?
Code: Select all
includes/functions_calendar.php
www.religions-of-azeroth.de
< Wir Suchen GM's | Scripter / Bugfixxer | Foren Moderatoren | Foren Designer >
< Wir Suchen GM's | Scripter / Bugfixxer | Foren Moderatoren | Foren Designer >
-
- Former Team Member
- Posts: 2266
- Joined: 19. January 2008 01:17
- phpBB.de User: Christian_N
- phpBB.com User: Christian_N
- Location: Frankfurt
- Contact:
Re: Calendar block for phpBB Calendar 0.0.8
Hast du dir auch den phpBB Calendar 0.0.8 runtergeladen? Den brauchst du nähmlich.
Denke aber mal eher nicht, ok gibs zu regulär geht es eh schlecht da phpBB.com Down ist, wenn man kein Trick 17 anwendet.
Download wäre jedenfalls http://www.phpbb.com/index.php?f=70&t=666195 gewesen.
Da aber derzeit Down ist hab ich mit Trick 17 mal die Cache-Version genommen.
Und sehe da, der Download-Link des Kalender gefunden: http://phpbbcalendar.com/downloads/phpbb_Calendar.zip
Gruß Chris
Denke aber mal eher nicht, ok gibs zu regulär geht es eh schlecht da phpBB.com Down ist, wenn man kein Trick 17 anwendet.
Download wäre jedenfalls http://www.phpbb.com/index.php?f=70&t=666195 gewesen.
Da aber derzeit Down ist hab ich mit Trick 17 mal die Cache-Version genommen.
Und sehe da, der Download-Link des Kalender gefunden: http://phpbbcalendar.com/downloads/phpbb_Calendar.zip
Gruß Chris