David
David
Hi, I know it's an old thread but I'm having the same issue today. Did you solve this ? Do you remember how ? EDIT Seems like I forgot :...
Hello, Sorry for discussing an old thread. How can I get the title in the modal ? I know I can do: `$('#modalTitle').html(event.title);` And display it with: `` But I...
Hi @Helidalto , Sorry for recalling an old thread, but did you solve this ? I have recurring events and variables changing on the week number, so I need to...
Hi, Sorry for reactivating an old thread, but I'm looking to integrate recurring events too. I can't see daysOfWeek option in this bundle. I need to create events based on...
Hi again, I was looking for daysOfWeek, but as it uses FullCalendar V2, I had to take a look at dow in the options array. Thanks to your great commit,...
Sorry my bad, I did not try enough. In case someone else is looking for this I could spare him some time. ``` ->setOptions([ 'firstDay' => 1, 'defaultView' => 'agendaWeek',...
I solved this correcting my js to: ``` document.onreadystatechange = function () { if (document.readyState == 'interactive') { document.getElementById('contents').style.visibility="hidden"; } else if (document.readyState == 'complete') { setTimeout(function(){ $('#loading').fadeOut(1600); document.getElementById('contents').style.visibility="visible"; },...
Any idea please? It can be easily reproduced on the demo with browser devlopper tools by changing l-header to: ``` .l-header { background-color: #fff; box-shadow: 0 2px 6px 0 rgba(0,0,0,.2);...
I don't know if it's the best way to do this but I managed to get rid of this error by overriding theme.js file in my child theme. I changed:...
CSS was quite easy to isolate to avoid unnecessary data to load. I downloaded latest Bootstrap, opened **bootstrap-4.4.1/dist/css/bootstrap.css** copied lines 6401 to 6600 and created a new stylesheet named **carousel.css**...