Search found 64 matches
- 19. March 2013 00:55
- Forum: Modification Requests
- Topic: Portal 2.0.0 Calendar Block Events
- Replies: 6
- Views: 23696
Re: Portal 2.0.0 Calendar Block Events
I just wanted to clarify that this " phpBB Calendar block on Board3 Portal (Update 1.0.4)" here: http://www.board3.de/viewtopic.php?f=53&t=1567 Will work with the latest beta " [Beta] phpBB Calendar 0.1.1 (alightner)" here: https://www.phpbb.com/community/viewtopic.php?f=70&a...
- 19. November 2009 17:10
- Forum: board3 Portal v1.0.x - Modifications
- Topic: Calendar block for phpBB Calendar 0.0.8
- Replies: 181
- Views: 323918
Re: Calendar block for phpBB Calendar 0.0.8
Would there be a way to have the calendar block show only if there are any events?
- 30. January 2009 01:58
- Forum: Modifications Support
- Topic: Increase News Char Max
- Replies: 4
- Views: 9640
Re: Increase News Char Max
Ok cool it was easier than I thought.
For anyone curious, search for “length” in news.php and bump up “3:3” to however many digits you want.
For anyone curious, search for “length” in news.php and bump up “3:3” to however many digits you want.
- 29. January 2009 20:30
- Forum: Modifications Support
- Topic: Increase News Char Max
- Replies: 4
- Views: 9640
Re: Increase News Char Max
I was referring to the number of characters shown in each news article.
- 29. January 2009 17:18
- Forum: Modifications Support
- Topic: Increase News Char Max
- Replies: 4
- Views: 9640
Increase News Char Max
Is there a way to increase the maximum number of characters in the center News Block?
I believe there is only space for 3 digits in the ACP meaning maximum characters of 999. How would I add another digit?
I believe there is only space for 3 digits in the ACP meaning maximum characters of 999. How would I add another digit?
- 29. January 2009 01:17
- Forum: Modification Requests
- Topic: phpBB Garage Block
- Replies: 1
- Views: 6158
Re: phpBB Garage Block
Nothing??
- 23. January 2009 06:12
- Forum: Modification Requests
- Topic: phpBB Garage Block
- Replies: 1
- Views: 6158
phpBB Garage Block
Anyone know if there is a Board3 portal for the phpBB Garage?
- 28. December 2008 06:58
- Forum: board3 Portal v1.0.x - Modifications in Dev
- Topic: BETA Custom News Block
- Replies: 15
- Views: 37927
Re: BETA Custom News Block
Great mod! Thanks for sharing.
Any suggestions on how to exclude stickied posts or announcements? Also to limit the number of characters in the title?
[edit] I also notice it is posting responses. Any way to get rid of that too?
Any suggestions on how to exclude stickied posts or announcements? Also to limit the number of characters in the title?
[edit] I also notice it is posting responses. Any way to get rid of that too?
- 22. December 2008 16:53
- Forum: board3 Portal v1.0.x - Modifications
- Topic: Calendar block for phpBB Calendar 0.0.8
- Replies: 181
- Views: 323918
Re: Calendar block for phpBB Calendar 0.0.8
There might be a bug when it is an all-day event. Someone setup an all day event for Christmas (12/25) in the main calendar and it is showing up in the block as 12/24.
- 19. December 2008 21:56
- Forum: Small talk
- Topic: What Knowledge Base Are you Using?
- Replies: 3
- Views: 8729
Re: What Knowledge Base Are you Using?
When I installed it, it worked out pretty smoothly. I just didn’t like the “classic” view when you listed out all the articles. I also wanted it to display the most recent article in its main page as well as in the portal. By the time I was done with it, I realized I could accomplish the same thing ...
- 19. December 2008 02:57
- Forum: Small talk
- Topic: What Knowledge Base Are you Using?
- Replies: 3
- Views: 8729
Re: What Knowledge Base Are you Using?
I’d be willing to bet that it is if anything based on the “Add Article” bar at the bottom.
- 18. December 2008 04:34
- Forum: board3 Portal v1.0.x - Modifications
- Topic: Calendar block for phpBB Calendar 0.0.8
- Replies: 181
- Views: 323918
Re: Calendar block for phpBB Calendar 0.0.8
... Still wondering how I can truncate event descriptions ... Hi t.r., in your calendar's ACP you can set, how many characters of the subject will be shown ("0" = no limit) The portal's calender block displays the same then. Indeed you are right, thomas ... however, I want to set a differ...
- 18. December 2008 01:01
- Forum: board3 Portal v1.0.x - Modifications
- Topic: Calendar block for phpBB Calendar 0.0.8
- Replies: 181
- Views: 323918
Re: Calendar block for phpBB Calendar 0.0.8
Oh snap I’m on a roll ... I think I found the truncate piece. :D $event_output['EVENT_SUBJECT'] = censor_text($row['event_subject']); if( $subject_limit > 0 ) { if(utf8_strlen($event_output['EVENT_SUBJECT']) > $subject_limit) { $event_output['EVENT_SUBJECT'] = truncate_string($event_output['EVENT_SU...
- 18. December 2008 00:57
- Forum: board3 Portal v1.0.x - Modifications
- Topic: Calendar block for phpBB Calendar 0.0.8
- Replies: 181
- Views: 323918
Re: Calendar block for phpBB Calendar 0.0.8
1) How can I limit the number of events shown? Ok found this one in the functions file. :D // find next 5 events $result = $db->sql_query_limit($sql, 5, 0); Still wondering how I can truncate event descriptions and also what I can delete from the php files if I took out the mini calendar from the h...
- 17. December 2008 06:23
- Forum: board3 Portal v1.0.x - Modifications
- Topic: Calendar block for phpBB Calendar 0.0.8
- Replies: 181
- Views: 323918
Re: Calendar block for phpBB Calendar 0.0.8
I've got this mod laid out to where I really like it. Thank you for those contributing to it. Just a few questions: 1) How can I limit the number of events shown? 2) If I were to delete the mini calendar so it just showed events, what codes can I delete? Thanks again. [edit] To clarify #1 above, wha...