![]() |
Been waiting for this to be made to work in a forum block, hope it can be sorted
|
1 Attachment(s)
Quote:
|
vb4.0.5 and not even showing up, tried the code you posted but for some reason nothing at all shows up
EDIT : Confirms it works BUT.... It does not show the event on the day, it only shows the events leading up to the date, and not on the date of the event The dates are moxed up, I posted a test event for tomorrow, yet this shows it for today |
Yea, just wanted to write the same^^
|
How about Repeated events. It doesn't appear to show them.
The regular Calendar is here:- http://forum2.solent-renegades.co.uk/calendar.php we have a club night every other Tuesday. However it doesn't show up on your widget:- http://forum2.solent-renegades.co.uk/content.php Great mod by the way. It was just what I needed. I haven't started learning PHP yet, I've come from an ASP / VB background. PHP looks simple enough but at this point I wont be looking into modifying your code. |
Anyone know what could be causing my error?
|
can this widget include holidays?
|
the mod works all good, except - what several users wrote - the events of the actual day are not displayed.
i have browsed the whole discussion and did not find a solution - if anyone can help that would be great! |
Quote:
|
bump
|
How about we all put our heads together and donate some money for someone to make a proper mod with all the needs we have?
In any case if there is a coder out here with knowledge of vbulletin coding who can make a custom event schedule, please contact me using the PM system. Paid. |
1 Attachment(s)
It seems as if this module either has issues with repeating events or the cache or both. In the attachment you'll see the circled event that occurred on Sept 8, yet today Sept 10th the event is still being shown.
As for this Quote:
|
Quote:
|
Quote:
I rely heavily on recurring events. Any luck in getting this fixed? Kurt |
Anyone know what I could do to troubleshoot my problem, on the cms page it works fantastically, however if I add it into a forum block it tells me...
Fatal error: Class 'vB' not found in /home/public_html/includes/block/html.php(95) : eval()'d code on line 9 Is there something I could change in my server config that would be causing this? I've tried disabling all plugins etc and have had no luck. |
Do the developers (ngcoders) for this mod ever log into vb.org anymore? It's quite frustrating that a seemingly easy widget and one that most people would use has so many limitations and MINIMAL developer support.
This is yet another reason to have widgets officially provided with VB (not as a hack or mod!) as part of the offering. That way they will work, we can track enhancements and lastly and most importantly it will be supported. Most other mature CMS portals have a ton of prepackaged widgets. What does everyone else think? |
We need people putting more attention to it at vbulletin.com, this way it will get more priority. So I have been told :)
|
Quote:
Kurt |
vB has been taking their sweet time developing a corporate solution for this Calendar Widget. It has been logged in Jira, but there have only been TWO votes so far and it appears to have been deprioritized. Please log into Jira and VOTE FOR THIS! It will only take you a minute: http://tracker.vbulletin.com/browse/VBIV-7656 Quote:
|
Quote:
http://tracker.vbulletin.com/browse/VBIV-7072 |
Quote:
|
Quote:
|
Hello,
Stupid question but I run 3 different event calendars, so if I create 3 different upcoming event widgets with 3 diffrent titles, how do I make each widget only check the right calendar for events?? |
Quote:
You'll need to submit an enhancement request to get any changes to the calendar (or other products). I'd suggest doing that on vb.com, not here. There are at least two outstanding extensive calendar enhancement request in the Tracker. I submitted this one: http://tracker.vbulletin.com/browse/VBIV-7072 and here's the other: http://tracker.vbulletin.com/browse/VBIV-7656 I'd recommend adding your requirement to either/both (via comments) and be sure to 'vote' for each. The more peoiple vote the more likely it'll get assigned to a developer! Kurt |
thanks for quick response Kurt, does this current widget in this post allow me to run 3 calendars with 3 different titled widgets and if so how do I get the correct one to know which calendar to take events off.??
|
Quote:
Here are the two items: http://tracker.vbulletin.com/browse/VBIV-7072 http://tracker.vbulletin.com/browse/VBIV-7656 Kurt |
this work like a widget ..
this is right ? well i try to use this in my forum ... ! |
This is my code. It shows all upcomming events and the events on the actually day. But it shows not only 2 how in $show_count, it shows all. Can you help me. THX
Quote:
|
How can I manage repeated events?
i.e. I want to display "each tuesday" for a repeated meeting I set an if about recurring and then I should pick the recuroption............ but how can I treat something like "1|4"? |
Quote:
http://tracker.vbulletin.com/browse/VBIV-7072 http://tracker.vbulletin.com/browse/VBIV-7656 Kurt |
please help with one more bit of info :)
by default it list the NAME/DATE... I have a custom field (a website link) to fill in when people add an event. I can get a third line to display (below code) but what to I do to make the info in this field appear in the link? code I have used is: Quote:
any help appreciated. |
Is there a way to get the event to still show on the day it is taking place and only go away the day after
|
Quote:
|
Can someone fix mse2k code so it doesnt show all events?
|
does anyone have one of these that works correctly with vb 4.1.x?
|
Quote:
|
the dates are always a day off, or doesnt show todays events, only future.
|
Quote:
Quote:
Try replacing the query with this: Code:
$query = sprintf("SELECT * FROM ".TABLE_PREFIX."event WHERE visible = 1 AND (dateline_from >= '%1\$d' || ( dateline_from <= '%1\$d' AND dateline_to >= '%1\$d' ) || (dateline_to = 0 AND DATE(FROM_UNIXTIME(dateline_from)) = DATE(FROM_UNIXTIME(%1\$d)))) ORDER BY dateline_from ASC LIMIT %2\$d",TIMENOW,$show_count); Alex |
HI all,
after spend time reading all thread from pg 1 until 14 finally i was successfully made it happen. Thanks to all that contribute the idea here. so i would like to share the coding as per below: ---------------------------------------------------------------------------------------------------------------------- ob_start(); // %d $show_count = 100; $query = sprintf("SELECT * FROM ".TABLE_PREFIX."event WHERE visible = 1 AND (dateline_from >= '%1\$d' || ( dateline_from <= '%1\$d' AND dateline_to >= '%1\$d' ) || (dateline_to = 0 AND DATE(FROM_UNIXTIME(dateline_from)) = DATE(FROM_UNIXTIME(%1\$d)))) ORDER BY dateline_from ASC LIMIT %2\$d",TIMENOW,$show_count); $event_get = vB::$db->query_read($query); $output_bits = ''; while($event = vB::$db->fetch_array($event_get)) { if($event['dateline_to'] == 0 ) { $format = sprintf("On %s",date('jS M Y',$event['dateline_from'])); } else { $format = sprintf("From %s to %s",date('jS M Y',$event['dateline_from']),date('jS M Y',$event['dateline_to'])); } $output_bits .= sprintf(' <div class = "cms_widget_post_bit"><h4 class="cms_widget_post_header"><a href="calendar.php?do=getinfo&e=%d">%s</a></h4> <p class="cms_widget_post_content">%s</p> </div> ',$event['eventid'],$event['title'],$format); } $output = $output_bits; ob_end_clean(); return $output; --------------------------------------------------------------------------------------------------------------------- This code suppose can show u all range of events. cheers! |
the dates are all wrong when its displayed on my page. In fact, tomorrows events show as happening today and the date listed is todays date, instead of tomorrows.
|
All times are GMT. The time now is 06:08 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|