[FS] Events [Paid] [Deleted]

Is there a way to specify more than one forum per event?
Right now, I am limited to assigning all events to only one Forum, but I wish to be able to assign each event to a different forum.

For example:
Event 1 for California Forum, Event 2 for New York forum, etc.;
Event 3 for Trade shows, Event 4 for Fundraising, etc.
 
To clarify:
I wish to create thread for each of the forums pointed by red arrow below; not only to "Test Event Threads" as is on your site.

xf.webp
 
No, event threads that are automatically created currently go to one forum. You can assign threads (if one isn't associated already), from anywhere.
 
You can assign threads (if one isn't associated already), from anywhere.

Can you expand on this please?

It was my understanding that only way to create an event and assign it to the calendar was thru "events" tab on top.
Is there a way to do it backwards: create a thread and link it to event in the calendar? Then this would work for me.
 
Yes, you can associate threads to events via the Event Tools or Thread Tools.

A thread cannot be associated already.
 
I am having trouble enabling the google API.

I successfully created API Key for Calendar and Embed Map, then entered into the appropriate field in Events Setting.

I also went and made the calendar public and this is where I am stuck.

I was reading the instructions in the link you provided and I think this is where I am lost (see below). I don't how to accomplish this below, I'd appreciate your help.



Quoted from http://fullcalendar.io/docs/google_calendar/
Dependencies

Next, you must have all the required js/css files. This includes the standard fullcalendar.js and fullcalendar.css, in addition to gcal.js:

<script type='text/javascript' src='fullcalendar/gcal.js'></script>

Writing the code
Now it's time to initialize your calendar in JavaScript. This is the most minimal example:

<script type='text/javascript'>

$(document).ready(function() {
$('#calendar').fullCalendar({
googleCalendarApiKey: '<YOUR API KEY>',
events: {
googleCalendarId: 'abcd1234@group.calendar.google.com'
}
});
});

</script>

If you want to specify some Event Source options, you can include them in the events object:

<script type='text/javascript'>

$(document).ready(function() {
$('#calendar').fullCalendar({
googleCalendarApiKey: '<YOUR API KEY>',
events: {
googleCalendarId: 'abcd1234@group.calendar.google.com',
className: 'gcal-event' // an option!
}
});
});

</script>
 

Attachments

  • upload_2015-10-11_7-32-47.webp
    upload_2015-10-11_7-32-47.webp
    23.9 KB · Views: 10
  • upload_2015-10-11_7-33-43.webp
    upload_2015-10-11_7-33-43.webp
    24.5 KB · Views: 13
  • upload_2015-10-11_7-34-20.webp
    upload_2015-10-11_7-34-20.webp
    14.3 KB · Views: 13
Last edited:
Make sure that you create a new project in your Google developers console, then enable the correct API and add the correct credentials with a server key with your servers IP address(es). The instructions do not mention this and I was encountering similar issues until I resolved this.
The API's you have enabled are correct. You should keep Maps Embed API enabled.
 
I am also stuck at that point.
Could someone please write step by step how to add google calendar into this addon.
Thank you (y)
 
Back
Top Bottom