inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on May 31, 2014 3:58:26 GMT -8
v1.1.0 submitted to library
added ability to add custom icon to events that show in day view added ability to add thread links to events that show in day view made events clickable in info center to go to day view for that day fixed a bug caused when it didnt find an existing cal event row object by creating a fake one
|
|
inherit
188342
0
Oct 31, 2018 12:03:02 GMT -8
mamagail48
271
January 2013
mamagail48
|
Post by mamagail48 on May 31, 2014 7:04:50 GMT -8
Wormopolis quick question about calendar events. Is this possible to show calendar events in sidebar rather than in the info center?
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on May 31, 2014 13:49:01 GMT -8
I guess we could do that. or maybe just use a footer code to copy it from the info center after its there and duplicate it into a side bar as well...
|
|
lkfco
New Member
Posts: 3
inherit
210274
0
Jun 14, 2014 11:23:48 GMT -8
lkfco
3
June 2014
lkfco
|
Post by lkfco on Jun 12, 2014 10:48:31 GMT -8
I currently have the V5 calendar setup in my forum. What will happen to the events created with that calendar if I install your plugin? Do I install your plugin and then disable the standard calendar?
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Jun 12, 2014 17:15:45 GMT -8
the normal v5 calendar stores things completely seperate so th eplugin wont affect it in any way. you dont even have to disable the standard calendar. it can be used alongside the plugin.
|
|
lkfco
New Member
Posts: 3
inherit
210274
0
Jun 14, 2014 11:23:48 GMT -8
lkfco
3
June 2014
lkfco
|
Post by lkfco on Jun 13, 2014 5:53:12 GMT -8
Thanks for your reply. I would like to have only one calendar. Is there any way to transfer events from the standard calendar to the plugin? Where does the plugin store its data?
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Jun 13, 2014 6:15:10 GMT -8
Won't be able to transfer because the standard calendar stores everything as threads. The plugin wouldn't have access to any threads that weren't on the page
The plugin stores in two places, the plugin settings ( for reoccurring events you want to always be there), and in a super forum key (user created events). Key stored events will auto delete events after a certain age unless they are set to reoccur.
|
|
lkfco
New Member
Posts: 3
inherit
210274
0
Jun 14, 2014 11:23:48 GMT -8
lkfco
3
June 2014
lkfco
|
Post by lkfco on Jun 13, 2014 6:48:42 GMT -8
Thanks for the information.
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Jun 13, 2014 7:21:05 GMT -8
One advantage of the plugin, is that you can have it show events down in the info center, and it doesnt require threads to be created for each event (though its now an option to link a thread).
|
|
inherit
209474
0
Jul 5, 2018 2:58:44 GMT -8
scifikriss
132
May 2014
scifikriss
|
Post by scifikriss on Aug 15, 2014 0:42:11 GMT -8
So want to get this but will need to buy another super key! ahh well... will see what happens... Kriss
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Aug 18, 2014 9:23:21 GMT -8
You can never go wrong with extra keys
|
|
inherit
211778
0
Aug 3, 2016 11:36:21 GMT -8
ponzinomics
250
July 2014
ponzinomics
|
Post by ponzinomics on Aug 23, 2014 12:13:16 GMT -8
The plugin seems to works great. I would like that when you click in menu bar it opens TODAY's events rather than a view of the whole month (http://...../calendar).
I can figure out some javascript fix by creating a new menu option linked to a URL built dynamically for today's date (http://...../calendar/8/23/2014) but I am afraid would be too ugly fix.
Any cleaner idea? Actually I do not know if the issue is related to this plugin or to the general calendar widget.
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Aug 23, 2014 13:56:12 GMT -8
general calendar widget. seems as if it should just take a global footer code though to append the date to the menu item href.
|
|
inherit
211778
0
Aug 3, 2016 11:36:21 GMT -8
ponzinomics
250
July 2014
ponzinomics
|
Post by ponzinomics on Aug 23, 2014 14:22:22 GMT -8
Thanks Wormo, for the moment this, in global footer, surely can be improved, but works. The calendar menu item does not have an id to look for.
var els = document.getElementsByTagName("a"); var calendarURL = 'http://www.myforum.com/calendar'; for (var i = 0, l = els.length; i < l; i++) { var el = els[i]; if (el.href === calendarURL) { var d = new Date(); el.href = calendarURL + '/' + (d.getMonth()+1) + '/' + d.getDate() + '/' + d.getFullYear(); break; } }
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Aug 23, 2014 14:42:02 GMT -8
if you use jQuery, you can get it with
var calMenu=$('div.navigation-menu a[href=="/calendar"]'); calMenu.attr('href', calMenu.attr('href')+ '/' + (d.getMonth()+1) + '/' + d.getDate() + '/' + d.getFullYear());
though you might have to check the padding on the day and month if they need leading zeros
|
|